home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / dspack / DSPACK231.exe / {app} / include / nserror.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-27  |  234.0 KB  |  9,211 lines

  1. /*++
  2.  
  3.   Microsoft Windows Media Technology
  4.   Copyright (C) Microsoft Corporation.  All Rights Reserved.
  5.  
  6. Module Name:
  7.  
  8.     nserror.mc
  9.  
  10. Abstract:
  11.  
  12.     Definitions for Windows Media events.
  13.  
  14. Author:
  15.  
  16.  
  17. Revision History:
  18.  
  19. Notes:
  20.  
  21.     This file is used by the MC tool to generate the nserror.h file
  22.  
  23. **************************** READ ME ******************************************
  24.  
  25.  Here are the commented error ranges for the Windows Media Technologies Group
  26.  
  27.  
  28.  LEGACY RANGES
  29.  
  30.      0  -  199 = General NetShow errors
  31.  
  32.    200  -  399 = NetShow error events
  33.  
  34.    400  -  599 = NetShow monitor events
  35.  
  36.    600  -  799 = NetShow IMmsAutoServer errors
  37.  
  38.   1000  - 1199 = NetShow MCMADM errors
  39.  
  40.  
  41.  NEW RANGES
  42.  
  43.   2000 -  2999 = ASF (defined in ASFERR.MC)
  44.  
  45.   3000 -  3999 = Windows Media SDK
  46.  
  47.   4000 -  4999 = Windows Media Player
  48.  
  49.   5000 -  5999 = Windows Media Server
  50.  
  51.   6000 -  6999 = Windows Media HTTP/RTSP result codes (defined in NETERROR.MC)
  52.  
  53.   7000 -  7999 = Windows Media Tools
  54.  
  55.   8000 -  8999 = Windows Media Content Discovery
  56.  
  57.   9000 -  9999 = Windows Media Real Time Collaboration
  58.  
  59.  10000 - 10999 = Windows Media Digital Rights Management
  60.  
  61.  11000 - 11999 = Windows Media Setup
  62.  
  63.  12000 - 12999 = Windows Media Networking
  64.  
  65.  13000 - 13999 = Windows Media Client Media Services
  66.  
  67. **************************** READ ME ******************************************
  68.  
  69. --*/
  70.  
  71. #ifndef _NSERROR_H
  72. #define _NSERROR_H
  73.  
  74.  
  75. #define STATUS_SEVERITY(hr)  (((hr) >> 30) & 0x3)
  76.  
  77. #ifdef RC_INVOKED
  78. #define _HRESULT_TYPEDEF_(_sc) _sc
  79. #else // RC_INVOKED
  80. #define _HRESULT_TYPEDEF_(_sc) ((HRESULT)_sc)
  81. #endif // RC_INVOKED
  82.  
  83.  
  84. /////////////////////////////////////////////////////////////////////////
  85. //
  86. // NETSHOW Success Events
  87. //
  88. /////////////////////////////////////////////////////////////////////////
  89.  
  90. //
  91. //  Values are 32 bit values layed out as follows:
  92. //
  93. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  94. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  95. //  +---+-+-+-----------------------+-------------------------------+
  96. //  |Sev|C|R|     Facility          |               Code            |
  97. //  +---+-+-+-----------------------+-------------------------------+
  98. //
  99. //  where
  100. //
  101. //      Sev - is the severity code
  102. //
  103. //          00 - Success
  104. //          01 - Informational
  105. //          10 - Warning
  106. //          11 - Error
  107. //
  108. //      C - is the Customer code flag
  109. //
  110. //      R - is a reserved bit
  111. //
  112. //      Facility - is the facility code
  113. //
  114. //      Code - is the facility's status code
  115. //
  116. //
  117. // Define the facility codes
  118. //
  119. #define FACILITY_NS_WIN32                0x7
  120. #define FACILITY_NS                      0xD
  121.  
  122.  
  123. //
  124. // Define the severity codes
  125. //
  126. #define STATUS_SEVERITY_WARNING          0x2
  127. #define STATUS_SEVERITY_SUCCESS          0x0
  128. #define STATUS_SEVERITY_INFORMATIONAL    0x1
  129. #define STATUS_SEVERITY_ERROR            0x3
  130.  
  131.  
  132. //
  133. // MessageId: NS_S_CALLPENDING
  134. //
  135. // MessageText:
  136. //
  137. //  The requested operation is pending completion.%0
  138. //
  139. #define NS_S_CALLPENDING                 _HRESULT_TYPEDEF_(0x000D0000L)
  140.  
  141. //
  142. // MessageId: NS_S_CALLABORTED
  143. //
  144. // MessageText:
  145. //
  146. //  The requested operation was aborted by the client.%0
  147. //
  148. #define NS_S_CALLABORTED                 _HRESULT_TYPEDEF_(0x000D0001L)
  149.  
  150. //
  151. // MessageId: NS_S_STREAM_TRUNCATED
  152. //
  153. // MessageText:
  154. //
  155. //  The stream was purposefully stopped before completion.%0
  156. //
  157. #define NS_S_STREAM_TRUNCATED            _HRESULT_TYPEDEF_(0x000D0002L)
  158.  
  159.  
  160. /////////////////////////////////////////////////////////////////////////
  161. //
  162. // NETSHOW Warning Events
  163. //
  164. /////////////////////////////////////////////////////////////////////////
  165.  
  166. //
  167. // MessageId: NS_W_SERVER_BANDWIDTH_LIMIT
  168. //
  169. // MessageText:
  170. //
  171. //  The maximum filebitrate value specified is greater than the server's configured maximum bandwidth.%0
  172. //
  173. #define NS_W_SERVER_BANDWIDTH_LIMIT      _HRESULT_TYPEDEF_(0x800D0003L)
  174.  
  175. //
  176. // MessageId: NS_W_FILE_BANDWIDTH_LIMIT
  177. //
  178. // MessageText:
  179. //
  180. //  The maximum bandwidth value specified is less than the maximum filebitrate.%0
  181. //
  182. #define NS_W_FILE_BANDWIDTH_LIMIT        _HRESULT_TYPEDEF_(0x800D0004L)
  183.  
  184.  
  185. /////////////////////////////////////////////////////////////////////////
  186. //
  187. // NETSHOW Error Events
  188. //
  189. /////////////////////////////////////////////////////////////////////////
  190.  
  191. //
  192. // MessageId: NS_E_NOCONNECTION
  193. //
  194. // MessageText:
  195. //
  196. //  There is no connection established with the Windows Media server. The operation failed.%0
  197. //
  198. #define NS_E_NOCONNECTION                _HRESULT_TYPEDEF_(0xC00D0005L)
  199.  
  200. //
  201. // MessageId: NS_E_CANNOTCONNECT
  202. //
  203. // MessageText:
  204. //
  205. //  Unable to establish a connection to the server.%0
  206. //
  207. #define NS_E_CANNOTCONNECT               _HRESULT_TYPEDEF_(0xC00D0006L)
  208.  
  209. //
  210. // MessageId: NS_E_CANNOTDESTROYTITLE
  211. //
  212. // MessageText:
  213. //
  214. //  Unable to destroy the title.%0
  215. //
  216. #define NS_E_CANNOTDESTROYTITLE          _HRESULT_TYPEDEF_(0xC00D0007L)
  217.  
  218. //
  219. // MessageId: NS_E_CANNOTRENAMETITLE
  220. //
  221. // MessageText:
  222. //
  223. //  Unable to rename the title.%0
  224. //
  225. #define NS_E_CANNOTRENAMETITLE           _HRESULT_TYPEDEF_(0xC00D0008L)
  226.  
  227. //
  228. // MessageId: NS_E_CANNOTOFFLINEDISK
  229. //
  230. // MessageText:
  231. //
  232. //  Unable to offline disk.%0
  233. //
  234. #define NS_E_CANNOTOFFLINEDISK           _HRESULT_TYPEDEF_(0xC00D0009L)
  235.  
  236. //
  237. // MessageId: NS_E_CANNOTONLINEDISK
  238. //
  239. // MessageText:
  240. //
  241. //  Unable to online disk.%0
  242. //
  243. #define NS_E_CANNOTONLINEDISK            _HRESULT_TYPEDEF_(0xC00D000AL)
  244.  
  245. //
  246. // MessageId: NS_E_NOREGISTEREDWALKER
  247. //
  248. // MessageText:
  249. //
  250. //  There is no file parser registered for this type of file.%0
  251. //
  252. #define NS_E_NOREGISTEREDWALKER          _HRESULT_TYPEDEF_(0xC00D000BL)
  253.  
  254. //
  255. // MessageId: NS_E_NOFUNNEL
  256. //
  257. // MessageText:
  258. //
  259. //  There is no data connection established.%0
  260. //
  261. #define NS_E_NOFUNNEL                    _HRESULT_TYPEDEF_(0xC00D000CL)
  262.  
  263. //
  264. // MessageId: NS_E_NO_LOCALPLAY
  265. //
  266. // MessageText:
  267. //
  268. //  Failed to load the local play DLL.%0
  269. //
  270. #define NS_E_NO_LOCALPLAY                _HRESULT_TYPEDEF_(0xC00D000DL)
  271.  
  272. //
  273. // MessageId: NS_E_NETWORK_BUSY
  274. //
  275. // MessageText:
  276. //
  277. //  The network is busy.%0
  278. //
  279. #define NS_E_NETWORK_BUSY                _HRESULT_TYPEDEF_(0xC00D000EL)
  280.  
  281. //
  282. // MessageId: NS_E_TOO_MANY_SESS
  283. //
  284. // MessageText:
  285. //
  286. //  The server session limit was exceeded.%0
  287. //
  288. #define NS_E_TOO_MANY_SESS               _HRESULT_TYPEDEF_(0xC00D000FL)
  289.  
  290. //
  291. // MessageId: NS_E_ALREADY_CONNECTED
  292. //
  293. // MessageText:
  294. //
  295. //  The network connection already exists.%0
  296. //
  297. #define NS_E_ALREADY_CONNECTED           _HRESULT_TYPEDEF_(0xC00D0010L)
  298.  
  299. //
  300. // MessageId: NS_E_INVALID_INDEX
  301. //
  302. // MessageText:
  303. //
  304. //  Index %1 is invalid.%0
  305. //
  306. #define NS_E_INVALID_INDEX               _HRESULT_TYPEDEF_(0xC00D0011L)
  307.  
  308. //
  309. // MessageId: NS_E_PROTOCOL_MISMATCH
  310. //
  311. // MessageText:
  312. //
  313. //  There is no protocol or protocol version supported by both the client and the server.%0
  314. //
  315. #define NS_E_PROTOCOL_MISMATCH           _HRESULT_TYPEDEF_(0xC00D0012L)
  316.  
  317. //
  318. // MessageId: NS_E_TIMEOUT
  319. //
  320. // MessageText:
  321. //
  322. //  The server, a computer set up to offer multimedia content to other computers, could not handle your request for multimedia content in a timely manner.  Please try again later.%0
  323. //
  324. #define NS_E_TIMEOUT                     _HRESULT_TYPEDEF_(0xC00D0013L)
  325.  
  326. //
  327. // MessageId: NS_E_NET_WRITE
  328. //
  329. // MessageText:
  330. //
  331. //  Error writing to the network.%0
  332. //
  333. #define NS_E_NET_WRITE                   _HRESULT_TYPEDEF_(0xC00D0014L)
  334.  
  335. //
  336. // MessageId: NS_E_NET_READ
  337. //
  338. // MessageText:
  339. //
  340. //  Error reading from the network.%0
  341. //
  342. #define NS_E_NET_READ                    _HRESULT_TYPEDEF_(0xC00D0015L)
  343.  
  344. //
  345. // MessageId: NS_E_DISK_WRITE
  346. //
  347. // MessageText:
  348. //
  349. //  Error writing to a disk.%0
  350. //
  351. #define NS_E_DISK_WRITE                  _HRESULT_TYPEDEF_(0xC00D0016L)
  352.  
  353. //
  354. // MessageId: NS_E_DISK_READ
  355. //
  356. // MessageText:
  357. //
  358. //  Error reading from a disk.%0
  359. //
  360. #define NS_E_DISK_READ                   _HRESULT_TYPEDEF_(0xC00D0017L)
  361.  
  362. //
  363. // MessageId: NS_E_FILE_WRITE
  364. //
  365. // MessageText:
  366. //
  367. //  Error writing to a file.%0
  368. //
  369. #define NS_E_FILE_WRITE                  _HRESULT_TYPEDEF_(0xC00D0018L)
  370.  
  371. //
  372. // MessageId: NS_E_FILE_READ
  373. //
  374. // MessageText:
  375. //
  376. //  Error reading from a file.%0
  377. //
  378. #define NS_E_FILE_READ                   _HRESULT_TYPEDEF_(0xC00D0019L)
  379.  
  380. //
  381. // MessageId: NS_E_FILE_NOT_FOUND
  382. //
  383. // MessageText:
  384. //
  385. //  The system cannot find the file specified.%0
  386. //
  387. #define NS_E_FILE_NOT_FOUND              _HRESULT_TYPEDEF_(0xC00D001AL)
  388.  
  389. //
  390. // MessageId: NS_E_FILE_EXISTS
  391. //
  392. // MessageText:
  393. //
  394. //  The file already exists.%0
  395. //
  396. #define NS_E_FILE_EXISTS                 _HRESULT_TYPEDEF_(0xC00D001BL)
  397.  
  398. //
  399. // MessageId: NS_E_INVALID_NAME
  400. //
  401. // MessageText:
  402. //
  403. //  The file name, directory name, or volume label syntax is incorrect.%0
  404. //
  405. #define NS_E_INVALID_NAME                _HRESULT_TYPEDEF_(0xC00D001CL)
  406.  
  407. //
  408. // MessageId: NS_E_FILE_OPEN_FAILED
  409. //
  410. // MessageText:
  411. //
  412. //  Failed to open a file.%0
  413. //
  414. #define NS_E_FILE_OPEN_FAILED            _HRESULT_TYPEDEF_(0xC00D001DL)
  415.  
  416. //
  417. // MessageId: NS_E_FILE_ALLOCATION_FAILED
  418. //
  419. // MessageText:
  420. //
  421. //  Unable to allocate a file.%0
  422. //
  423. #define NS_E_FILE_ALLOCATION_FAILED      _HRESULT_TYPEDEF_(0xC00D001EL)
  424.  
  425. //
  426. // MessageId: NS_E_FILE_INIT_FAILED
  427. //
  428. // MessageText:
  429. //
  430. //  Unable to initialize a file.%0
  431. //
  432. #define NS_E_FILE_INIT_FAILED            _HRESULT_TYPEDEF_(0xC00D001FL)
  433.  
  434. //
  435. // MessageId: NS_E_FILE_PLAY_FAILED
  436. //
  437. // MessageText:
  438. //
  439. //  Unable to play a file.%0
  440. //
  441. #define NS_E_FILE_PLAY_FAILED            _HRESULT_TYPEDEF_(0xC00D0020L)
  442.  
  443. //
  444. // MessageId: NS_E_SET_DISK_UID_FAILED
  445. //
  446. // MessageText:
  447. //
  448. //  Could not set the disk UID.%0
  449. //
  450. #define NS_E_SET_DISK_UID_FAILED         _HRESULT_TYPEDEF_(0xC00D0021L)
  451.  
  452. //
  453. // MessageId: NS_E_INDUCED
  454. //
  455. // MessageText:
  456. //
  457. //  An error was induced for testing purposes.%0
  458. //
  459. #define NS_E_INDUCED                     _HRESULT_TYPEDEF_(0xC00D0022L)
  460.  
  461. //
  462. // MessageId: NS_E_CCLINK_DOWN
  463. //
  464. // MessageText:
  465. //
  466. //  Two Content Servers failed to communicate.%0
  467. //
  468. #define NS_E_CCLINK_DOWN                 _HRESULT_TYPEDEF_(0xC00D0023L)
  469.  
  470. //
  471. // MessageId: NS_E_INTERNAL
  472. //
  473. // MessageText:
  474. //
  475. //  An unknown error occurred.%0
  476. //
  477. #define NS_E_INTERNAL                    _HRESULT_TYPEDEF_(0xC00D0024L)
  478.  
  479. //
  480. // MessageId: NS_E_BUSY
  481. //
  482. // MessageText:
  483. //
  484. //  The requested resource is in use.%0
  485. //
  486. #define NS_E_BUSY                        _HRESULT_TYPEDEF_(0xC00D0025L)
  487.  
  488. //
  489. // MessageId: NS_E_UNRECOGNIZED_STREAM_TYPE
  490. //
  491. // MessageText:
  492. //
  493. //  The specified protocol is not recognized. Be sure that the file name and syntax, such as slashes, are correct for the protocol.%0
  494. //
  495. #define NS_E_UNRECOGNIZED_STREAM_TYPE    _HRESULT_TYPEDEF_(0xC00D0026L)
  496.  
  497. //
  498. // MessageId: NS_E_NETWORK_SERVICE_FAILURE
  499. //
  500. // MessageText:
  501. //
  502. //  The network service provider failed.%0
  503. //
  504. #define NS_E_NETWORK_SERVICE_FAILURE     _HRESULT_TYPEDEF_(0xC00D0027L)
  505.  
  506. //
  507. // MessageId: NS_E_NETWORK_RESOURCE_FAILURE
  508. //
  509. // MessageText:
  510. //
  511. //  An attempt to acquire a network resource failed.%0
  512. //
  513. #define NS_E_NETWORK_RESOURCE_FAILURE    _HRESULT_TYPEDEF_(0xC00D0028L)
  514.  
  515. //
  516. // MessageId: NS_E_CONNECTION_FAILURE
  517. //
  518. // MessageText:
  519. //
  520. //  The network connection has failed.%0
  521. //
  522. #define NS_E_CONNECTION_FAILURE          _HRESULT_TYPEDEF_(0xC00D0029L)
  523.  
  524. //
  525. // MessageId: NS_E_SHUTDOWN
  526. //
  527. // MessageText:
  528. //
  529. //  The session is being terminated locally.%0
  530. //
  531. #define NS_E_SHUTDOWN                    _HRESULT_TYPEDEF_(0xC00D002AL)
  532.  
  533. //
  534. // MessageId: NS_E_INVALID_REQUEST
  535. //
  536. // MessageText:
  537. //
  538. //  The request is invalid in the current state.%0
  539. //
  540. #define NS_E_INVALID_REQUEST             _HRESULT_TYPEDEF_(0xC00D002BL)
  541.  
  542. //
  543. // MessageId: NS_E_INSUFFICIENT_BANDWIDTH
  544. //
  545. // MessageText:
  546. //
  547. //  There is insufficient bandwidth available to fulfill the request.%0
  548. //
  549. #define NS_E_INSUFFICIENT_BANDWIDTH      _HRESULT_TYPEDEF_(0xC00D002CL)
  550.  
  551. //
  552. // MessageId: NS_E_NOT_REBUILDING
  553. //
  554. // MessageText:
  555. //
  556. //  The disk is not rebuilding.%0
  557. //
  558. #define NS_E_NOT_REBUILDING              _HRESULT_TYPEDEF_(0xC00D002DL)
  559.  
  560. //
  561. // MessageId: NS_E_LATE_OPERATION
  562. //
  563. // MessageText:
  564. //
  565. //  An operation requested for a particular time could not be carried out on schedule.%0
  566. //
  567. #define NS_E_LATE_OPERATION              _HRESULT_TYPEDEF_(0xC00D002EL)
  568.  
  569. //
  570. // MessageId: NS_E_INVALID_DATA
  571. //
  572. // MessageText:
  573. //
  574. //  Invalid or corrupt data was encountered.%0
  575. //
  576. #define NS_E_INVALID_DATA                _HRESULT_TYPEDEF_(0xC00D002FL)
  577.  
  578. //
  579. // MessageId: NS_E_FILE_BANDWIDTH_LIMIT
  580. //
  581. // MessageText:
  582. //
  583. //  The bandwidth required to stream a file is higher than the maximum file bandwidth allowed on the server.%0
  584. //
  585. #define NS_E_FILE_BANDWIDTH_LIMIT        _HRESULT_TYPEDEF_(0xC00D0030L)
  586.  
  587. //
  588. // MessageId: NS_E_OPEN_FILE_LIMIT
  589. //
  590. // MessageText:
  591. //
  592. //  The client cannot have any more files open simultaneously.%0
  593. //
  594. #define NS_E_OPEN_FILE_LIMIT             _HRESULT_TYPEDEF_(0xC00D0031L)
  595.  
  596. //
  597. // MessageId: NS_E_BAD_CONTROL_DATA
  598. //
  599. // MessageText:
  600. //
  601. //  The server received invalid data from the client on the control connection.%0
  602. //
  603. #define NS_E_BAD_CONTROL_DATA            _HRESULT_TYPEDEF_(0xC00D0032L)
  604.  
  605. //
  606. // MessageId: NS_E_NO_STREAM
  607. //
  608. // MessageText:
  609. //
  610. //  There is no stream available.%0
  611. //
  612. #define NS_E_NO_STREAM                   _HRESULT_TYPEDEF_(0xC00D0033L)
  613.  
  614. //
  615. // MessageId: NS_E_STREAM_END
  616. //
  617. // MessageText:
  618. //
  619. //  There is no more data in the stream.%0
  620. //
  621. #define NS_E_STREAM_END                  _HRESULT_TYPEDEF_(0xC00D0034L)
  622.  
  623. //
  624. // MessageId: NS_E_SERVER_NOT_FOUND
  625. //
  626. // MessageText:
  627. //
  628. //  The specified server could not be found.%0
  629. //
  630. #define NS_E_SERVER_NOT_FOUND            _HRESULT_TYPEDEF_(0xC00D0035L)
  631.  
  632. //
  633. // MessageId: NS_E_DUPLICATE_NAME
  634. //
  635. // MessageText:
  636. //
  637. //  The specified name is already in use.
  638. //
  639. #define NS_E_DUPLICATE_NAME              _HRESULT_TYPEDEF_(0xC00D0036L)
  640.  
  641. //
  642. // MessageId: NS_E_DUPLICATE_ADDRESS
  643. //
  644. // MessageText:
  645. //
  646. //  The specified address is already in use.
  647. //
  648. #define NS_E_DUPLICATE_ADDRESS           _HRESULT_TYPEDEF_(0xC00D0037L)
  649.  
  650. //
  651. // MessageId: NS_E_BAD_MULTICAST_ADDRESS
  652. //
  653. // MessageText:
  654. //
  655. //  The specified address is not a valid multicast address.
  656. //
  657. #define NS_E_BAD_MULTICAST_ADDRESS       _HRESULT_TYPEDEF_(0xC00D0038L)
  658.  
  659. //
  660. // MessageId: NS_E_BAD_ADAPTER_ADDRESS
  661. //
  662. // MessageText:
  663. //
  664. //  The specified adapter address is invalid.
  665. //
  666. #define NS_E_BAD_ADAPTER_ADDRESS         _HRESULT_TYPEDEF_(0xC00D0039L)
  667.  
  668. //
  669. // MessageId: NS_E_BAD_DELIVERY_MODE
  670. //
  671. // MessageText:
  672. //
  673. //  The specified delivery mode is invalid.
  674. //
  675. #define NS_E_BAD_DELIVERY_MODE           _HRESULT_TYPEDEF_(0xC00D003AL)
  676.  
  677. //
  678. // MessageId: NS_E_INVALID_CHANNEL
  679. //
  680. // MessageText:
  681. //
  682. //  The specified station does not exist.
  683. //
  684. #define NS_E_INVALID_CHANNEL             _HRESULT_TYPEDEF_(0xC00D003BL)
  685.  
  686. //
  687. // MessageId: NS_E_INVALID_STREAM
  688. //
  689. // MessageText:
  690. //
  691. //  The specified stream does not exist.
  692. //
  693. #define NS_E_INVALID_STREAM              _HRESULT_TYPEDEF_(0xC00D003CL)
  694.  
  695. //
  696. // MessageId: NS_E_INVALID_ARCHIVE
  697. //
  698. // MessageText:
  699. //
  700. //  The specified archive could not be opened.
  701. //
  702. #define NS_E_INVALID_ARCHIVE             _HRESULT_TYPEDEF_(0xC00D003DL)
  703.  
  704. //
  705. // MessageId: NS_E_NOTITLES
  706. //
  707. // MessageText:
  708. //
  709. //  The system cannot find any titles on the server.%0
  710. //
  711. #define NS_E_NOTITLES                    _HRESULT_TYPEDEF_(0xC00D003EL)
  712.  
  713. //
  714. // MessageId: NS_E_INVALID_CLIENT
  715. //
  716. // MessageText:
  717. //
  718. //  The system cannot find the client specified.%0
  719. //
  720. #define NS_E_INVALID_CLIENT              _HRESULT_TYPEDEF_(0xC00D003FL)
  721.  
  722. //
  723. // MessageId: NS_E_INVALID_BLACKHOLE_ADDRESS
  724. //
  725. // MessageText:
  726. //
  727. //  The Blackhole Address is not initialized.%0
  728. //
  729. #define NS_E_INVALID_BLACKHOLE_ADDRESS   _HRESULT_TYPEDEF_(0xC00D0040L)
  730.  
  731. //
  732. // MessageId: NS_E_INCOMPATIBLE_FORMAT
  733. //
  734. // MessageText:
  735. //
  736. //  The station does not support the stream format.
  737. //
  738. #define NS_E_INCOMPATIBLE_FORMAT         _HRESULT_TYPEDEF_(0xC00D0041L)
  739.  
  740. //
  741. // MessageId: NS_E_INVALID_KEY
  742. //
  743. // MessageText:
  744. //
  745. //  The specified key is not valid.
  746. //
  747. #define NS_E_INVALID_KEY                 _HRESULT_TYPEDEF_(0xC00D0042L)
  748.  
  749. //
  750. // MessageId: NS_E_INVALID_PORT
  751. //
  752. // MessageText:
  753. //
  754. //  The specified port is not valid.
  755. //
  756. #define NS_E_INVALID_PORT                _HRESULT_TYPEDEF_(0xC00D0043L)
  757.  
  758. //
  759. // MessageId: NS_E_INVALID_TTL
  760. //
  761. // MessageText:
  762. //
  763. //  The specified TTL is not valid.
  764. //
  765. #define NS_E_INVALID_TTL                 _HRESULT_TYPEDEF_(0xC00D0044L)
  766.  
  767. //
  768. // MessageId: NS_E_STRIDE_REFUSED
  769. //
  770. // MessageText:
  771. //
  772. //  The request to fast forward or rewind could not be fulfilled.
  773. //
  774. #define NS_E_STRIDE_REFUSED              _HRESULT_TYPEDEF_(0xC00D0045L)
  775.  
  776. //
  777. // IMmsAutoServer Errors
  778. //
  779. //
  780. // MessageId: NS_E_MMSAUTOSERVER_CANTFINDWALKER
  781. //
  782. // MessageText:
  783. //
  784. //  Unable to load the appropriate file parser.%0
  785. //
  786. #define NS_E_MMSAUTOSERVER_CANTFINDWALKER _HRESULT_TYPEDEF_(0xC00D0046L)
  787.  
  788. //
  789. // MessageId: NS_E_MAX_BITRATE
  790. //
  791. // MessageText:
  792. //
  793. //  Cannot exceed the maximum bandwidth limit.%0
  794. //
  795. #define NS_E_MAX_BITRATE                 _HRESULT_TYPEDEF_(0xC00D0047L)
  796.  
  797. //
  798. // MessageId: NS_E_LOGFILEPERIOD
  799. //
  800. // MessageText:
  801. //
  802. //  Invalid value for LogFilePeriod.%0
  803. //
  804. #define NS_E_LOGFILEPERIOD               _HRESULT_TYPEDEF_(0xC00D0048L)
  805.  
  806. //
  807. // MessageId: NS_E_MAX_CLIENTS
  808. //
  809. // MessageText:
  810. //
  811. //  Cannot exceed the maximum client limit.%0
  812. //  
  813. //
  814. #define NS_E_MAX_CLIENTS                 _HRESULT_TYPEDEF_(0xC00D0049L)
  815.  
  816. //
  817. // MessageId: NS_E_LOG_FILE_SIZE
  818. //
  819. // MessageText:
  820. //
  821. //  The maximum log file size has been reached.%0
  822. //  
  823. //
  824. #define NS_E_LOG_FILE_SIZE               _HRESULT_TYPEDEF_(0xC00D004AL)
  825.  
  826. //
  827. // MessageId: NS_E_MAX_FILERATE
  828. //
  829. // MessageText:
  830. //
  831. //  Cannot exceed the maximum file rate.%0
  832. //
  833. #define NS_E_MAX_FILERATE                _HRESULT_TYPEDEF_(0xC00D004BL)
  834.  
  835. //
  836. // File Walker Errors
  837. //
  838. //
  839. // MessageId: NS_E_WALKER_UNKNOWN
  840. //
  841. // MessageText:
  842. //
  843. //  Unknown file type.%0
  844. //
  845. #define NS_E_WALKER_UNKNOWN              _HRESULT_TYPEDEF_(0xC00D004CL)
  846.  
  847. //
  848. // MessageId: NS_E_WALKER_SERVER
  849. //
  850. // MessageText:
  851. //
  852. //  The specified file, %1, cannot be loaded onto the specified server, %2.%0
  853. //
  854. #define NS_E_WALKER_SERVER               _HRESULT_TYPEDEF_(0xC00D004DL)
  855.  
  856. //
  857. // MessageId: NS_E_WALKER_USAGE
  858. //
  859. // MessageText:
  860. //
  861. //  There was a usage error with file parser.%0
  862. //
  863. #define NS_E_WALKER_USAGE                _HRESULT_TYPEDEF_(0xC00D004EL)
  864.  
  865.  
  866. /////////////////////////////////////////////////////////////////////////
  867. //
  868. // NETSHOW Monitor Events
  869. //
  870. /////////////////////////////////////////////////////////////////////////
  871.  
  872.  
  873.  // Tiger Events
  874.  
  875.  // %1 is the tiger name
  876.  
  877. //
  878. // MessageId: NS_I_TIGER_START
  879. //
  880. // MessageText:
  881. //
  882. //  The Title Server %1 is running.%0
  883. //
  884. #define NS_I_TIGER_START                 _HRESULT_TYPEDEF_(0x400D004FL)
  885.  
  886. //
  887. // MessageId: NS_E_TIGER_FAIL
  888. //
  889. // MessageText:
  890. //
  891. //  The Title Server %1 has failed.%0
  892. //
  893. #define NS_E_TIGER_FAIL                  _HRESULT_TYPEDEF_(0xC00D0050L)
  894.  
  895.  
  896.  // Cub Events
  897.  
  898.  // %1 is the cub ID
  899.  // %2 is the cub name
  900.  
  901. //
  902. // MessageId: NS_I_CUB_START
  903. //
  904. // MessageText:
  905. //
  906. //  Content Server %1 (%2) is starting.%0
  907. //
  908. #define NS_I_CUB_START                   _HRESULT_TYPEDEF_(0x400D0051L)
  909.  
  910. //
  911. // MessageId: NS_I_CUB_RUNNING
  912. //
  913. // MessageText:
  914. //
  915. //  Content Server %1 (%2) is running.%0
  916. //
  917. #define NS_I_CUB_RUNNING                 _HRESULT_TYPEDEF_(0x400D0052L)
  918.  
  919. //
  920. // MessageId: NS_E_CUB_FAIL
  921. //
  922. // MessageText:
  923. //
  924. //  Content Server %1 (%2) has failed.%0
  925. //
  926. #define NS_E_CUB_FAIL                    _HRESULT_TYPEDEF_(0xC00D0053L)
  927.  
  928.  
  929.  // Disk Events
  930.  
  931.  // %1 is the tiger disk ID
  932.  // %2 is the device name
  933.  // %3 is the cub ID
  934. //
  935. // MessageId: NS_I_DISK_START
  936. //
  937. // MessageText:
  938. //
  939. //  Disk %1 ( %2 ) on Content Server %3, is running.%0
  940. //
  941. #define NS_I_DISK_START                  _HRESULT_TYPEDEF_(0x400D0054L)
  942.  
  943. //
  944. // MessageId: NS_E_DISK_FAIL
  945. //
  946. // MessageText:
  947. //
  948. //  Disk %1 ( %2 ) on Content Server %3, has failed.%0
  949. //
  950. #define NS_E_DISK_FAIL                   _HRESULT_TYPEDEF_(0xC00D0055L)
  951.  
  952. //
  953. // MessageId: NS_I_DISK_REBUILD_STARTED
  954. //
  955. // MessageText:
  956. //
  957. //  Started rebuilding disk %1 ( %2 ) on Content Server %3.%0
  958. //
  959. #define NS_I_DISK_REBUILD_STARTED        _HRESULT_TYPEDEF_(0x400D0056L)
  960.  
  961. //
  962. // MessageId: NS_I_DISK_REBUILD_FINISHED
  963. //
  964. // MessageText:
  965. //
  966. //  Finished rebuilding disk %1 ( %2 ) on Content Server %3.%0
  967. //
  968. #define NS_I_DISK_REBUILD_FINISHED       _HRESULT_TYPEDEF_(0x400D0057L)
  969.  
  970. //
  971. // MessageId: NS_I_DISK_REBUILD_ABORTED
  972. //
  973. // MessageText:
  974. //
  975. //  Aborted rebuilding disk %1 ( %2 ) on Content Server %3.%0
  976. //
  977. #define NS_I_DISK_REBUILD_ABORTED        _HRESULT_TYPEDEF_(0x400D0058L)
  978.  
  979.  
  980.  // Admin Events
  981.  
  982. //
  983. // MessageId: NS_I_LIMIT_FUNNELS
  984. //
  985. // MessageText:
  986. //
  987. //  A NetShow administrator at network location %1 set the data stream limit to %2 streams.%0
  988. //
  989. #define NS_I_LIMIT_FUNNELS               _HRESULT_TYPEDEF_(0x400D0059L)
  990.  
  991. //
  992. // MessageId: NS_I_START_DISK
  993. //
  994. // MessageText:
  995. //
  996. //  A NetShow administrator at network location %1 started disk %2.%0
  997. //
  998. #define NS_I_START_DISK                  _HRESULT_TYPEDEF_(0x400D005AL)
  999.  
  1000. //
  1001. // MessageId: NS_I_STOP_DISK
  1002. //
  1003. // MessageText:
  1004. //
  1005. //  A NetShow administrator at network location %1 stopped disk %2.%0
  1006. //
  1007. #define NS_I_STOP_DISK                   _HRESULT_TYPEDEF_(0x400D005BL)
  1008.  
  1009. //
  1010. // MessageId: NS_I_STOP_CUB
  1011. //
  1012. // MessageText:
  1013. //
  1014. //  A NetShow administrator at network location %1 stopped Content Server %2.%0
  1015. //
  1016. #define NS_I_STOP_CUB                    _HRESULT_TYPEDEF_(0x400D005CL)
  1017.  
  1018. //
  1019. // MessageId: NS_I_KILL_USERSESSION
  1020. //
  1021. // MessageText:
  1022. //
  1023. //  A NetShow administrator at network location %1 aborted user session %2 from the system.%0
  1024. //
  1025. #define NS_I_KILL_USERSESSION            _HRESULT_TYPEDEF_(0x400D005DL)
  1026.  
  1027. //
  1028. // MessageId: NS_I_KILL_CONNECTION
  1029. //
  1030. // MessageText:
  1031. //
  1032. //  A NetShow administrator at network location %1 aborted obsolete connection %2 from the system.%0
  1033. //
  1034. #define NS_I_KILL_CONNECTION             _HRESULT_TYPEDEF_(0x400D005EL)
  1035.  
  1036. //
  1037. // MessageId: NS_I_REBUILD_DISK
  1038. //
  1039. // MessageText:
  1040. //
  1041. //  A NetShow administrator at network location %1 started rebuilding disk %2.%0
  1042. //
  1043. #define NS_I_REBUILD_DISK                _HRESULT_TYPEDEF_(0x400D005FL)
  1044.  
  1045. //
  1046. // MessageId: NS_W_UNKNOWN_EVENT
  1047. //
  1048. // MessageText:
  1049. //
  1050. //  Unknown %1 event encountered.%0
  1051. //
  1052. #define NS_W_UNKNOWN_EVENT               _HRESULT_TYPEDEF_(0x800D0060L)
  1053.  
  1054.  
  1055.  // Alerts
  1056.  
  1057. //
  1058. // MessageId: NS_E_MAX_FUNNELS_ALERT
  1059. //
  1060. // MessageText:
  1061. //
  1062. //  The NetShow data stream limit of %1 streams was reached.%0
  1063. //
  1064. #define NS_E_MAX_FUNNELS_ALERT           _HRESULT_TYPEDEF_(0xC00D0060L)
  1065.  
  1066. //
  1067. // MessageId: NS_E_ALLOCATE_FILE_FAIL
  1068. //
  1069. // MessageText:
  1070. //
  1071. //  The NetShow Video Server was unable to allocate a %1 block file named %2.%0
  1072. //
  1073. #define NS_E_ALLOCATE_FILE_FAIL          _HRESULT_TYPEDEF_(0xC00D0061L)
  1074.  
  1075. //
  1076. // MessageId: NS_E_PAGING_ERROR
  1077. //
  1078. // MessageText:
  1079. //
  1080. //  A Content Server was unable to page a block.%0
  1081. //
  1082. #define NS_E_PAGING_ERROR                _HRESULT_TYPEDEF_(0xC00D0062L)
  1083.  
  1084. //
  1085. // MessageId: NS_E_BAD_BLOCK0_VERSION
  1086. //
  1087. // MessageText:
  1088. //
  1089. //  Disk %1 has unrecognized control block version %2.%0
  1090. //
  1091. #define NS_E_BAD_BLOCK0_VERSION          _HRESULT_TYPEDEF_(0xC00D0063L)
  1092.  
  1093. //
  1094. // MessageId: NS_E_BAD_DISK_UID
  1095. //
  1096. // MessageText:
  1097. //
  1098. //  Disk %1 has incorrect uid %2.%0
  1099. //
  1100. #define NS_E_BAD_DISK_UID                _HRESULT_TYPEDEF_(0xC00D0064L)
  1101.  
  1102. //
  1103. // MessageId: NS_E_BAD_FSMAJOR_VERSION
  1104. //
  1105. // MessageText:
  1106. //
  1107. //  Disk %1 has unsupported file system major version %2.%0
  1108. //
  1109. #define NS_E_BAD_FSMAJOR_VERSION         _HRESULT_TYPEDEF_(0xC00D0065L)
  1110.  
  1111. //
  1112. // MessageId: NS_E_BAD_STAMPNUMBER
  1113. //
  1114. // MessageText:
  1115. //
  1116. //  Disk %1 has bad stamp number in control block.%0
  1117. //
  1118. #define NS_E_BAD_STAMPNUMBER             _HRESULT_TYPEDEF_(0xC00D0066L)
  1119.  
  1120. //
  1121. // MessageId: NS_E_PARTIALLY_REBUILT_DISK
  1122. //
  1123. // MessageText:
  1124. //
  1125. //  Disk %1 is partially reconstructed.%0
  1126. //
  1127. #define NS_E_PARTIALLY_REBUILT_DISK      _HRESULT_TYPEDEF_(0xC00D0067L)
  1128.  
  1129. //
  1130. // MessageId: NS_E_ENACTPLAN_GIVEUP
  1131. //
  1132. // MessageText:
  1133. //
  1134. //  EnactPlan gives up.%0
  1135. //
  1136. #define NS_E_ENACTPLAN_GIVEUP            _HRESULT_TYPEDEF_(0xC00D0068L)
  1137.  
  1138.  
  1139.  // MCMADM warnings/errors
  1140.  
  1141. //
  1142. // MessageId: MCMADM_I_NO_EVENTS
  1143. //
  1144. // MessageText:
  1145. //
  1146. //  Event initialization failed, there will be no MCM events.%0
  1147. //
  1148. #define MCMADM_I_NO_EVENTS               _HRESULT_TYPEDEF_(0x400D0069L)
  1149.  
  1150. //
  1151. // MessageId: MCMADM_E_REGKEY_NOT_FOUND
  1152. //
  1153. // MessageText:
  1154. //
  1155. //  The key was not found in the registry.%0
  1156. //
  1157. #define MCMADM_E_REGKEY_NOT_FOUND        _HRESULT_TYPEDEF_(0xC00D006AL)
  1158.  
  1159. //
  1160. // MessageId: NS_E_NO_FORMATS
  1161. //
  1162. // MessageText:
  1163. //
  1164. //  The publishing point cannot be started because the server does not have the appropriate stream formats. Use the Multicast Announcement Wizard to create a new announcement for this publishing point.%0
  1165. //
  1166. #define NS_E_NO_FORMATS                  _HRESULT_TYPEDEF_(0xC00D006BL)
  1167.  
  1168. //
  1169. // MessageId: NS_E_NO_REFERENCES
  1170. //
  1171. // MessageText:
  1172. //
  1173. //  No reference URLs were found in an ASX file.%0
  1174. //
  1175. #define NS_E_NO_REFERENCES               _HRESULT_TYPEDEF_(0xC00D006CL)
  1176.  
  1177. //
  1178. // MessageId: NS_E_WAVE_OPEN
  1179. //
  1180. // MessageText:
  1181. //
  1182. //  Error opening wave device, the device might be in use.%0
  1183. //
  1184. #define NS_E_WAVE_OPEN                   _HRESULT_TYPEDEF_(0xC00D006DL)
  1185.  
  1186. //
  1187. // MessageId: NS_I_LOGGING_FAILED
  1188. //
  1189. // MessageText:
  1190. //
  1191. //  The logging operation failed.
  1192. //
  1193. #define NS_I_LOGGING_FAILED              _HRESULT_TYPEDEF_(0x400D006EL)
  1194.  
  1195. //
  1196. // MessageId: NS_E_CANNOTCONNECTEVENTS
  1197. //
  1198. // MessageText:
  1199. //
  1200. //  Unable to establish a connection to the NetShow event monitor service.%0
  1201. //
  1202. #define NS_E_CANNOTCONNECTEVENTS         _HRESULT_TYPEDEF_(0xC00D006FL)
  1203.  
  1204. //
  1205. // MessageId: NS_I_LIMIT_BANDWIDTH
  1206. //
  1207. // MessageText:
  1208. //
  1209. //  A NetShow administrator at network location %1 set the maximum bandwidth limit to %2 bps.%0
  1210. //
  1211. #define NS_I_LIMIT_BANDWIDTH             _HRESULT_TYPEDEF_(0x400D0070L)
  1212.  
  1213. //
  1214. // MessageId: NS_E_NO_DEVICE
  1215. //
  1216. // MessageText:
  1217. //
  1218. //  No device driver is present on the system.%0
  1219. //
  1220. #define NS_E_NO_DEVICE                   _HRESULT_TYPEDEF_(0xC00D0071L)
  1221.  
  1222. //
  1223. // MessageId: NS_E_NO_SPECIFIED_DEVICE
  1224. //
  1225. // MessageText:
  1226. //
  1227. //  No specified device driver is present.%0
  1228. //
  1229. #define NS_E_NO_SPECIFIED_DEVICE         _HRESULT_TYPEDEF_(0xC00D0072L)
  1230.  
  1231.  
  1232. // NOTENOTE!!!
  1233. //
  1234. // Due to legacy problems these error codes live inside the ASF error code range
  1235. //
  1236. //
  1237. // MessageId: NS_E_NOTHING_TO_DO
  1238. //
  1239. // MessageText:
  1240. //
  1241. //  NS_E_NOTHING_TO_DO
  1242. //
  1243. #define NS_E_NOTHING_TO_DO               _HRESULT_TYPEDEF_(0xC00D07F1L)
  1244.  
  1245. //
  1246. // MessageId: NS_E_NO_MULTICAST
  1247. //
  1248. // MessageText:
  1249. //
  1250. //  Not receiving data from the server.%0
  1251. //
  1252. #define NS_E_NO_MULTICAST                _HRESULT_TYPEDEF_(0xC00D07F2L)
  1253.  
  1254.  
  1255. /////////////////////////////////////////////////////////////////////////
  1256. //
  1257. // NETSHOW Error Events
  1258. //
  1259. // IdRange = 200..399
  1260. //
  1261. /////////////////////////////////////////////////////////////////////////
  1262.  
  1263. //
  1264. // MessageId: NS_E_MONITOR_GIVEUP
  1265. //
  1266. // MessageText:
  1267. //
  1268. //  Netshow Events Monitor is not operational and has been disconnected.%0
  1269. //
  1270. #define NS_E_MONITOR_GIVEUP              _HRESULT_TYPEDEF_(0xC00D00C8L)
  1271.  
  1272. //
  1273. // MessageId: NS_E_REMIRRORED_DISK
  1274. //
  1275. // MessageText:
  1276. //
  1277. //  Disk %1 is remirrored.%0
  1278. //
  1279. #define NS_E_REMIRRORED_DISK             _HRESULT_TYPEDEF_(0xC00D00C9L)
  1280.  
  1281. //
  1282. // MessageId: NS_E_INSUFFICIENT_DATA
  1283. //
  1284. // MessageText:
  1285. //
  1286. //  Insufficient data found.%0
  1287. //
  1288. #define NS_E_INSUFFICIENT_DATA           _HRESULT_TYPEDEF_(0xC00D00CAL)
  1289.  
  1290. //
  1291. // MessageId: NS_E_ASSERT
  1292. //
  1293. // MessageText:
  1294. //
  1295. //  %1 failed in file %2 line %3.%0
  1296. //
  1297. #define NS_E_ASSERT                      _HRESULT_TYPEDEF_(0xC00D00CBL)
  1298.  
  1299. //
  1300. // MessageId: NS_E_BAD_ADAPTER_NAME
  1301. //
  1302. // MessageText:
  1303. //
  1304. //  The specified adapter name is invalid.%0
  1305. //
  1306. #define NS_E_BAD_ADAPTER_NAME            _HRESULT_TYPEDEF_(0xC00D00CCL)
  1307.  
  1308. //
  1309. // MessageId: NS_E_NOT_LICENSED
  1310. //
  1311. // MessageText:
  1312. //
  1313. //  The application is not licensed for this feature.%0
  1314. //
  1315. #define NS_E_NOT_LICENSED                _HRESULT_TYPEDEF_(0xC00D00CDL)
  1316.  
  1317. //
  1318. // MessageId: NS_E_NO_SERVER_CONTACT
  1319. //
  1320. // MessageText:
  1321. //
  1322. //  Unable to contact the server.%0
  1323. //
  1324. #define NS_E_NO_SERVER_CONTACT           _HRESULT_TYPEDEF_(0xC00D00CEL)
  1325.  
  1326. //
  1327. // MessageId: NS_E_TOO_MANY_TITLES
  1328. //
  1329. // MessageText:
  1330. //
  1331. //  Maximum number of titles exceeded.%0
  1332. //
  1333. #define NS_E_TOO_MANY_TITLES             _HRESULT_TYPEDEF_(0xC00D00CFL)
  1334.  
  1335. //
  1336. // MessageId: NS_E_TITLE_SIZE_EXCEEDED
  1337. //
  1338. // MessageText:
  1339. //
  1340. //  Maximum size of a title exceeded.%0
  1341. //
  1342. #define NS_E_TITLE_SIZE_EXCEEDED         _HRESULT_TYPEDEF_(0xC00D00D0L)
  1343.  
  1344. //
  1345. // MessageId: NS_E_UDP_DISABLED
  1346. //
  1347. // MessageText:
  1348. //
  1349. //  UDP protocol not enabled. Not trying %1!ls!.%0
  1350. //
  1351. #define NS_E_UDP_DISABLED                _HRESULT_TYPEDEF_(0xC00D00D1L)
  1352.  
  1353. //
  1354. // MessageId: NS_E_TCP_DISABLED
  1355. //
  1356. // MessageText:
  1357. //
  1358. //  TCP protocol not enabled. Not trying %1!ls!.%0
  1359. //
  1360. #define NS_E_TCP_DISABLED                _HRESULT_TYPEDEF_(0xC00D00D2L)
  1361.  
  1362. //
  1363. // MessageId: NS_E_HTTP_DISABLED
  1364. //
  1365. // MessageText:
  1366. //
  1367. //  HTTP protocol not enabled. Not trying %1!ls!.%0
  1368. //
  1369. #define NS_E_HTTP_DISABLED               _HRESULT_TYPEDEF_(0xC00D00D3L)
  1370.  
  1371. //
  1372. // MessageId: NS_E_LICENSE_EXPIRED
  1373. //
  1374. // MessageText:
  1375. //
  1376. //  The product license has expired.%0
  1377. //
  1378. #define NS_E_LICENSE_EXPIRED             _HRESULT_TYPEDEF_(0xC00D00D4L)
  1379.  
  1380. //
  1381. // MessageId: NS_E_TITLE_BITRATE
  1382. //
  1383. // MessageText:
  1384. //
  1385. //  Source file exceeds the per title maximum bitrate. See NetShow Theater documentation for more information.%0
  1386. //
  1387. #define NS_E_TITLE_BITRATE               _HRESULT_TYPEDEF_(0xC00D00D5L)
  1388.  
  1389. //
  1390. // MessageId: NS_E_EMPTY_PROGRAM_NAME
  1391. //
  1392. // MessageText:
  1393. //
  1394. //  The program name cannot be empty.%0
  1395. //
  1396. #define NS_E_EMPTY_PROGRAM_NAME          _HRESULT_TYPEDEF_(0xC00D00D6L)
  1397.  
  1398. //
  1399. // MessageId: NS_E_MISSING_CHANNEL
  1400. //
  1401. // MessageText:
  1402. //
  1403. //  Station %1 does not exist.%0
  1404. //
  1405. #define NS_E_MISSING_CHANNEL             _HRESULT_TYPEDEF_(0xC00D00D7L)
  1406.  
  1407. //
  1408. // MessageId: NS_E_NO_CHANNELS
  1409. //
  1410. // MessageText:
  1411. //
  1412. //  You need to define at least one station before this operation can complete.%0
  1413. //
  1414. #define NS_E_NO_CHANNELS                 _HRESULT_TYPEDEF_(0xC00D00D8L)
  1415.  
  1416.  
  1417. /////////////////////////////////////////////////////////////////////
  1418. // This error message is to replace previous NS_E_INVALID_INDEX which
  1419. // takes an index value for the error message string.  For some application
  1420. // obtain the idex value at reporting error time is very difficult, so we
  1421. // use this string to avoid the problem.
  1422. //////////////////////////////////////////////////////////////////////
  1423.  
  1424. //
  1425. // MessageId: NS_E_INVALID_INDEX2
  1426. //
  1427. // MessageText:
  1428. //
  1429. //  The index specified is invalid.%0
  1430. //
  1431. #define NS_E_INVALID_INDEX2              _HRESULT_TYPEDEF_(0xC00D00D9L)
  1432.  
  1433.  
  1434. /////////////////////////////////////////////////////////////////////////
  1435. //
  1436. // NETSHOW Monitor Events
  1437. //
  1438. // IdRange = 400..599
  1439. //
  1440. // Admin Events:
  1441. //
  1442. // Alerts:
  1443. //
  1444. // Title Server:
  1445. //      %1 is the Title Server name
  1446. //
  1447. // Content Server:
  1448. //      %1 is the Content Server ID
  1449. //      %2 is the Content Server name
  1450. //      %3 is the Peer Content Server name (optional)
  1451. //
  1452. // Disks:
  1453. //      %1 is the Title Server disk ID
  1454. //      %2 is the device name
  1455. //      %3 is the Content Server ID
  1456. //
  1457. /////////////////////////////////////////////////////////////////////////
  1458.  
  1459. //
  1460. // MessageId: NS_E_CUB_FAIL_LINK
  1461. //
  1462. // MessageText:
  1463. //
  1464. //  Content Server %1 (%2) has failed its link to Content Server %3.%0
  1465. //
  1466. #define NS_E_CUB_FAIL_LINK               _HRESULT_TYPEDEF_(0xC00D0190L)
  1467.  
  1468. //
  1469. // MessageId: NS_I_CUB_UNFAIL_LINK
  1470. //
  1471. // MessageText:
  1472. //
  1473. //  Content Server %1 (%2) has established its link to Content Server %3.%0
  1474. //
  1475. #define NS_I_CUB_UNFAIL_LINK             _HRESULT_TYPEDEF_(0x400D0191L)
  1476.  
  1477. //
  1478. // MessageId: NS_E_BAD_CUB_UID
  1479. //
  1480. // MessageText:
  1481. //
  1482. //  Content Server %1 (%2) has incorrect uid %3.%0
  1483. //
  1484. #define NS_E_BAD_CUB_UID                 _HRESULT_TYPEDEF_(0xC00D0192L)
  1485.  
  1486. //
  1487. // MessageId: NS_I_RESTRIPE_START
  1488. //
  1489. // MessageText:
  1490. //
  1491. //  Restripe operation has started.%0
  1492. //
  1493. #define NS_I_RESTRIPE_START              _HRESULT_TYPEDEF_(0x400D0193L)
  1494.  
  1495. //
  1496. // MessageId: NS_I_RESTRIPE_DONE
  1497. //
  1498. // MessageText:
  1499. //
  1500. //  Restripe operation has completed.%0
  1501. //
  1502. #define NS_I_RESTRIPE_DONE               _HRESULT_TYPEDEF_(0x400D0194L)
  1503.  
  1504. //
  1505. // MessageId: NS_E_GLITCH_MODE
  1506. //
  1507. // MessageText:
  1508. //
  1509. //  Server unreliable because multiple components failed.%0
  1510. //
  1511. #define NS_E_GLITCH_MODE                 _HRESULT_TYPEDEF_(0xC00D0195L)
  1512.  
  1513. //
  1514. // MessageId: NS_I_RESTRIPE_DISK_OUT
  1515. //
  1516. // MessageText:
  1517. //
  1518. //  Content disk %1 (%2) on Content Server %3 has been restriped out.%0
  1519. //
  1520. #define NS_I_RESTRIPE_DISK_OUT           _HRESULT_TYPEDEF_(0x400D0196L)
  1521.  
  1522. //
  1523. // MessageId: NS_I_RESTRIPE_CUB_OUT
  1524. //
  1525. // MessageText:
  1526. //
  1527. //  Content server %1 (%2) has been restriped out.%0
  1528. //
  1529. #define NS_I_RESTRIPE_CUB_OUT            _HRESULT_TYPEDEF_(0x400D0197L)
  1530.  
  1531. //
  1532. // MessageId: NS_I_DISK_STOP
  1533. //
  1534. // MessageText:
  1535. //
  1536. //  Disk %1 ( %2 ) on Content Server %3, has been offlined.%0
  1537. //
  1538. #define NS_I_DISK_STOP                   _HRESULT_TYPEDEF_(0x400D0198L)
  1539.  
  1540. //
  1541. // MessageId: NS_I_CATATONIC_FAILURE
  1542. //
  1543. // MessageText:
  1544. //
  1545. //  Disk %1 ( %2 ) on Content Server %3, will be failed because it is catatonic.%0
  1546. //
  1547. #define NS_I_CATATONIC_FAILURE           _HRESULT_TYPEDEF_(0x800D0199L)
  1548.  
  1549. //
  1550. // MessageId: NS_I_CATATONIC_AUTO_UNFAIL
  1551. //
  1552. // MessageText:
  1553. //
  1554. //  Disk %1 ( %2 ) on Content Server %3, auto online from catatonic state.%0
  1555. //
  1556. #define NS_I_CATATONIC_AUTO_UNFAIL       _HRESULT_TYPEDEF_(0x800D019AL)
  1557.  
  1558. //
  1559. // MessageId: NS_E_NO_MEDIA_PROTOCOL
  1560. //
  1561. // MessageText:
  1562. //
  1563. //  Content Server %1 (%2) is unable to communicate with the Media System Network Protocol.%0
  1564. //
  1565. #define NS_E_NO_MEDIA_PROTOCOL           _HRESULT_TYPEDEF_(0xC00D019BL)
  1566.  
  1567.  
  1568. //
  1569. // Advanced Streaming Format (ASF) codes occupy MessageIds 2000-2999
  1570. //
  1571. // See ASFErr.mc for more details - please do not define any symbols
  1572. // in that range in this file.
  1573. //
  1574.  
  1575.  
  1576. /////////////////////////////////////////////////////////////////////////
  1577. //
  1578. // Windows Media SDK Errors
  1579. //
  1580. // IdRange = 3000-3199
  1581. //
  1582. /////////////////////////////////////////////////////////////////////////
  1583.  
  1584. //
  1585. // MessageId: NS_E_INVALID_INPUT_FORMAT
  1586. //
  1587. // MessageText:
  1588. //
  1589. //  The input media format is invalid.%0
  1590. //
  1591. #define NS_E_INVALID_INPUT_FORMAT        _HRESULT_TYPEDEF_(0xC00D0BB8L)
  1592.  
  1593. //
  1594. // MessageId: NS_E_MSAUDIO_NOT_INSTALLED
  1595. //
  1596. // MessageText:
  1597. //
  1598. //  The MSAudio codec is not installed on this system.%0
  1599. //
  1600. #define NS_E_MSAUDIO_NOT_INSTALLED       _HRESULT_TYPEDEF_(0xC00D0BB9L)
  1601.  
  1602. //
  1603. // MessageId: NS_E_UNEXPECTED_MSAUDIO_ERROR
  1604. //
  1605. // MessageText:
  1606. //
  1607. //  An unexpected error occurred with the MSAudio codec.%0
  1608. //
  1609. #define NS_E_UNEXPECTED_MSAUDIO_ERROR    _HRESULT_TYPEDEF_(0xC00D0BBAL)
  1610.  
  1611. //
  1612. // MessageId: NS_E_INVALID_OUTPUT_FORMAT
  1613. //
  1614. // MessageText:
  1615. //
  1616. //  The output media format is invalid.%0
  1617. //
  1618. #define NS_E_INVALID_OUTPUT_FORMAT       _HRESULT_TYPEDEF_(0xC00D0BBBL)
  1619.  
  1620. //
  1621. // MessageId: NS_E_NOT_CONFIGURED
  1622. //
  1623. // MessageText:
  1624. //
  1625. //  The object must be fully configured before audio samples can be processed.%0
  1626. //
  1627. #define NS_E_NOT_CONFIGURED              _HRESULT_TYPEDEF_(0xC00D0BBCL)
  1628.  
  1629. //
  1630. // MessageId: NS_E_PROTECTED_CONTENT
  1631. //
  1632. // MessageText:
  1633. //
  1634. //  You need a license to perform the requested operation on this media file.%0
  1635. //
  1636. #define NS_E_PROTECTED_CONTENT           _HRESULT_TYPEDEF_(0xC00D0BBDL)
  1637.  
  1638. //
  1639. // MessageId: NS_E_LICENSE_REQUIRED
  1640. //
  1641. // MessageText:
  1642. //
  1643. //  You need a license to perform the requested operation on this media file.%0
  1644. //
  1645. #define NS_E_LICENSE_REQUIRED            _HRESULT_TYPEDEF_(0xC00D0BBEL)
  1646.  
  1647. //
  1648. // MessageId: NS_E_TAMPERED_CONTENT
  1649. //
  1650. // MessageText:
  1651. //
  1652. //  This media file is corrupted or invalid. Contact the content provider for a new file.%0
  1653. //
  1654. #define NS_E_TAMPERED_CONTENT            _HRESULT_TYPEDEF_(0xC00D0BBFL)
  1655.  
  1656. //
  1657. // MessageId: NS_E_LICENSE_OUTOFDATE
  1658. //
  1659. // MessageText:
  1660. //
  1661. //  The license for this media file has expired. Get a new license or contact the content provider for further assistance.%0
  1662. //
  1663. #define NS_E_LICENSE_OUTOFDATE           _HRESULT_TYPEDEF_(0xC00D0BC0L)
  1664.  
  1665. //
  1666. // MessageId: NS_E_LICENSE_INCORRECT_RIGHTS
  1667. //
  1668. // MessageText:
  1669. //
  1670. //  You are not allowed to open this file. Contact the content provider for further assistance.%0
  1671. //
  1672. #define NS_E_LICENSE_INCORRECT_RIGHTS    _HRESULT_TYPEDEF_(0xC00D0BC1L)
  1673.  
  1674. //
  1675. // MessageId: NS_E_AUDIO_CODEC_NOT_INSTALLED
  1676. //
  1677. // MessageText:
  1678. //
  1679. //  The requested audio codec is not installed on this system.%0
  1680. //
  1681. #define NS_E_AUDIO_CODEC_NOT_INSTALLED   _HRESULT_TYPEDEF_(0xC00D0BC2L)
  1682.  
  1683. //
  1684. // MessageId: NS_E_AUDIO_CODEC_ERROR
  1685. //
  1686. // MessageText:
  1687. //
  1688. //  An unexpected error occurred with the audio codec.%0
  1689. //
  1690. #define NS_E_AUDIO_CODEC_ERROR           _HRESULT_TYPEDEF_(0xC00D0BC3L)
  1691.  
  1692. //
  1693. // MessageId: NS_E_VIDEO_CODEC_NOT_INSTALLED
  1694. //
  1695. // MessageText:
  1696. //
  1697. //  The requested video codec is not installed on this system.%0
  1698. //
  1699. #define NS_E_VIDEO_CODEC_NOT_INSTALLED   _HRESULT_TYPEDEF_(0xC00D0BC4L)
  1700.  
  1701. //
  1702. // MessageId: NS_E_VIDEO_CODEC_ERROR
  1703. //
  1704. // MessageText:
  1705. //
  1706. //  An unexpected error occurred with the video codec.%0
  1707. //
  1708. #define NS_E_VIDEO_CODEC_ERROR           _HRESULT_TYPEDEF_(0xC00D0BC5L)
  1709.  
  1710. //
  1711. // MessageId: NS_E_INVALIDPROFILE
  1712. //
  1713. // MessageText:
  1714. //
  1715. //  The Profile is invalid.%0
  1716. //
  1717. #define NS_E_INVALIDPROFILE              _HRESULT_TYPEDEF_(0xC00D0BC6L)
  1718.  
  1719. //
  1720. // MessageId: NS_E_INCOMPATIBLE_VERSION
  1721. //
  1722. // MessageText:
  1723. //
  1724. //  A new version of the SDK is needed to play the requested content.%0
  1725. //
  1726. #define NS_E_INCOMPATIBLE_VERSION        _HRESULT_TYPEDEF_(0xC00D0BC7L)
  1727.  
  1728. //
  1729. // MessageId: NS_S_REBUFFERING
  1730. //
  1731. // MessageText:
  1732. //
  1733. //  The requested operation has caused the source to rebuffer.%0
  1734. //
  1735. #define NS_S_REBUFFERING                 _HRESULT_TYPEDEF_(0x000D0BC8L)
  1736.  
  1737. //
  1738. // MessageId: NS_S_DEGRADING_QUALITY
  1739. //
  1740. // MessageText:
  1741. //
  1742. //  The requested operation has caused the source to degrade codec quality.%0
  1743. //
  1744. #define NS_S_DEGRADING_QUALITY           _HRESULT_TYPEDEF_(0x000D0BC9L)
  1745.  
  1746. //
  1747. // MessageId: NS_E_OFFLINE_MODE
  1748. //
  1749. // MessageText:
  1750. //
  1751. //  The requested URL is not available in offline mode.%0
  1752. //
  1753. #define NS_E_OFFLINE_MODE                _HRESULT_TYPEDEF_(0xC00D0BCAL)
  1754.  
  1755. //
  1756. // MessageId: NS_E_NOT_CONNECTED
  1757. //
  1758. // MessageText:
  1759. //
  1760. //  The requested URL cannot be accessed because there is no network connection.%0
  1761. //
  1762. #define NS_E_NOT_CONNECTED               _HRESULT_TYPEDEF_(0xC00D0BCBL)
  1763.  
  1764. //
  1765. // MessageId: NS_E_TOO_MUCH_DATA
  1766. //
  1767. // MessageText:
  1768. //
  1769. //  The encoding process was unable to keep up with the amount of supplied data.%0
  1770. //
  1771. #define NS_E_TOO_MUCH_DATA               _HRESULT_TYPEDEF_(0xC00D0BCCL)
  1772.  
  1773. //
  1774. // MessageId: NS_E_UNSUPPORTED_PROPERTY
  1775. //
  1776. // MessageText:
  1777. //
  1778. //  The given property is not supported.%0
  1779. //
  1780. #define NS_E_UNSUPPORTED_PROPERTY        _HRESULT_TYPEDEF_(0xC00D0BCDL)
  1781.  
  1782. //
  1783. // MessageId: NS_E_8BIT_WAVE_UNSUPPORTED
  1784. //
  1785. // MessageText:
  1786. //
  1787. //  Windows Media Player cannot copy the files to the CD because they are 8-bit. Convert the files to 16-bit, 44-kHz stereo files by using Sound Recorder or another audio-processing program, and then try again.%0
  1788. //
  1789. #define NS_E_8BIT_WAVE_UNSUPPORTED       _HRESULT_TYPEDEF_(0xC00D0BCEL)
  1790.  
  1791. //
  1792. // MessageId: NS_E_NO_MORE_SAMPLES
  1793. //
  1794. // MessageText:
  1795. //
  1796. //  There are no more samples in the current range.%0
  1797. //
  1798. #define NS_E_NO_MORE_SAMPLES             _HRESULT_TYPEDEF_(0xC00D0BCFL)
  1799.  
  1800. //
  1801. // MessageId: NS_E_INVALID_SAMPLING_RATE
  1802. //
  1803. // MessageText:
  1804. //
  1805. //  The given sampling rate is invalid.%0
  1806. //
  1807. #define NS_E_INVALID_SAMPLING_RATE       _HRESULT_TYPEDEF_(0xC00D0BD0L)
  1808.  
  1809. //
  1810. // MessageId: NS_E_MAX_PACKET_SIZE_TOO_SMALL
  1811. //
  1812. // MessageText:
  1813. //
  1814. //  The given maximum packet size is too small to accommodate this profile
  1815. //
  1816. #define NS_E_MAX_PACKET_SIZE_TOO_SMALL   _HRESULT_TYPEDEF_(0xC00D0BD1L)
  1817.  
  1818. //
  1819. // MessageId: NS_E_LATE_PACKET
  1820. //
  1821. // MessageText:
  1822. //
  1823. //  The packet arrived too late to be of use
  1824. //
  1825. #define NS_E_LATE_PACKET                 _HRESULT_TYPEDEF_(0xC00D0BD2L)
  1826.  
  1827. //
  1828. // MessageId: NS_E_DUPLICATE_PACKET
  1829. //
  1830. // MessageText:
  1831. //
  1832. //  The packet is a duplicate of one received before
  1833. //
  1834. #define NS_E_DUPLICATE_PACKET            _HRESULT_TYPEDEF_(0xC00D0BD3L)
  1835.  
  1836. //
  1837. // MessageId: NS_E_SDK_BUFFERTOOSMALL
  1838. //
  1839. // MessageText:
  1840. //
  1841. //  Supplied buffer is too small
  1842. //
  1843. #define NS_E_SDK_BUFFERTOOSMALL          _HRESULT_TYPEDEF_(0xC00D0BD4L)
  1844.  
  1845. //
  1846. // MessageId: NS_E_INVALID_NUM_PASSES
  1847. //
  1848. // MessageText:
  1849. //
  1850. //  The wrong number of preprocessing passes was used for the stream's output type
  1851. //
  1852. #define NS_E_INVALID_NUM_PASSES          _HRESULT_TYPEDEF_(0xC00D0BD5L)
  1853.  
  1854. //
  1855. // MessageId: NS_E_ATTRIBUTE_READ_ONLY
  1856. //
  1857. // MessageText:
  1858. //
  1859. //  An attempt was made to add, modify, or delete a read only attribute
  1860. //
  1861. #define NS_E_ATTRIBUTE_READ_ONLY         _HRESULT_TYPEDEF_(0xC00D0BD6L)
  1862.  
  1863. //
  1864. // MessageId: NS_E_ATTRIBUTE_NOT_ALLOWED
  1865. //
  1866. // MessageText:
  1867. //
  1868. //  An attempt was made to add attribute that is not allowed for the given media type
  1869. //
  1870. #define NS_E_ATTRIBUTE_NOT_ALLOWED       _HRESULT_TYPEDEF_(0xC00D0BD7L)
  1871.  
  1872. //
  1873. // MessageId: NS_E_INVALID_EDL
  1874. //
  1875. // MessageText:
  1876. //
  1877. //  The EDL provided is invalid
  1878. //
  1879. #define NS_E_INVALID_EDL                 _HRESULT_TYPEDEF_(0xC00D0BD8L)
  1880.  
  1881. //
  1882. // MessageId: NS_E_DATA_UNIT_EXTENSION_TOO_LARGE
  1883. //
  1884. // MessageText:
  1885. //
  1886. //  The Data Unit Extension data was too large to be used.%0
  1887. //
  1888. #define NS_E_DATA_UNIT_EXTENSION_TOO_LARGE _HRESULT_TYPEDEF_(0xC00D0BD9L)
  1889.  
  1890. //
  1891. // MessageId: NS_E_CODEC_DMO_ERROR
  1892. //
  1893. // MessageText:
  1894. //
  1895. //  An unexpected error occurred with a DMO codec.%0
  1896. //
  1897. #define NS_E_CODEC_DMO_ERROR             _HRESULT_TYPEDEF_(0xC00D0BDAL)
  1898.  
  1899.  
  1900.  
  1901. /////////////////////////////////////////////////////////////////////////
  1902. //
  1903. // Windows Media Player Errors
  1904. //
  1905. // IdRange = 4000 - 4999
  1906. //
  1907. /////////////////////////////////////////////////////////////////////////
  1908.  
  1909. //
  1910. // WMP CD Filter Error codes
  1911. //
  1912. //
  1913. // MessageId: NS_E_NO_CD
  1914. //
  1915. // MessageText:
  1916. //
  1917. //  There is no CD in the CD-ROM drive. Insert a CD, and try again.%0
  1918. //
  1919. #define NS_E_NO_CD                       _HRESULT_TYPEDEF_(0xC00D0FA0L)
  1920.  
  1921. //
  1922. // MessageId: NS_E_CANT_READ_DIGITAL
  1923. //
  1924. // MessageText:
  1925. //
  1926. //  Unable to perform digital reads on this compact disc drive.  Please try analog playback via the Tools Options menu.%0
  1927. //
  1928. #define NS_E_CANT_READ_DIGITAL           _HRESULT_TYPEDEF_(0xC00D0FA1L)
  1929.  
  1930. //
  1931. // MessageId: NS_E_DEVICE_DISCONNECTED
  1932. //
  1933. // MessageText:
  1934. //
  1935. //  Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try copying the file again.%0
  1936. //
  1937. #define NS_E_DEVICE_DISCONNECTED         _HRESULT_TYPEDEF_(0xC00D0FA2L)
  1938.  
  1939. //
  1940. // MessageId: NS_E_DEVICE_NOT_SUPPORT_FORMAT
  1941. //
  1942. // MessageText:
  1943. //
  1944. //  Windows Media Player cannot play the file. The portable device does not support the specified format.%0
  1945. //
  1946. #define NS_E_DEVICE_NOT_SUPPORT_FORMAT   _HRESULT_TYPEDEF_(0xC00D0FA3L)
  1947.  
  1948. //
  1949. // MessageId: NS_E_SLOW_READ_DIGITAL
  1950. //
  1951. // MessageText:
  1952. //
  1953. //  Windows Media Player encountered a problem while attempting to play the CD using digital playback. The Player has automatically switched the CD-ROM drive to analog playback. To switch back to digital CD playback, use the Devices tab.%0
  1954. //
  1955. #define NS_E_SLOW_READ_DIGITAL           _HRESULT_TYPEDEF_(0xC00D0FA4L)
  1956.  
  1957. //
  1958. // MessageId: NS_E_MIXER_INVALID_LINE
  1959. //
  1960. // MessageText:
  1961. //
  1962. //  An invalid line error occurred in the mixer.%0
  1963. //
  1964. #define NS_E_MIXER_INVALID_LINE          _HRESULT_TYPEDEF_(0xC00D0FA5L)
  1965.  
  1966. //
  1967. // MessageId: NS_E_MIXER_INVALID_CONTROL
  1968. //
  1969. // MessageText:
  1970. //
  1971. //  An invalid control error occurred in the mixer.%0
  1972. //
  1973. #define NS_E_MIXER_INVALID_CONTROL       _HRESULT_TYPEDEF_(0xC00D0FA6L)
  1974.  
  1975. //
  1976. // MessageId: NS_E_MIXER_INVALID_VALUE
  1977. //
  1978. // MessageText:
  1979. //
  1980. //  An invalid value error occurred in the mixer.%0
  1981. //
  1982. #define NS_E_MIXER_INVALID_VALUE         _HRESULT_TYPEDEF_(0xC00D0FA7L)
  1983.  
  1984. //
  1985. // MessageId: NS_E_MIXER_UNKNOWN_MMRESULT
  1986. //
  1987. // MessageText:
  1988. //
  1989. //  An unrecognized MMRESULT occurred in the mixer.%0
  1990. //
  1991. #define NS_E_MIXER_UNKNOWN_MMRESULT      _HRESULT_TYPEDEF_(0xC00D0FA8L)
  1992.  
  1993. //
  1994. // MessageId: NS_E_USER_STOP
  1995. //
  1996. // MessageText:
  1997. //
  1998. //  User has stopped the operation.%0
  1999. //
  2000. #define NS_E_USER_STOP                   _HRESULT_TYPEDEF_(0xC00D0FA9L)
  2001.  
  2002. //
  2003. // MessageId: NS_E_MP3_FORMAT_NOT_FOUND
  2004. //
  2005. // MessageText:
  2006. //
  2007. //  Windows Media Player cannot copy the file because a compatible MP3 encoder is not installed on your computer. Install a compatible MP3 encoder, or choose a different format to copy to (such as Windows Media Audio).%0
  2008. //
  2009. #define NS_E_MP3_FORMAT_NOT_FOUND        _HRESULT_TYPEDEF_(0xC00D0FAAL)
  2010.  
  2011. //
  2012. // MessageId: NS_E_CD_READ_ERROR_NO_CORRECTION
  2013. //
  2014. // MessageText:
  2015. //
  2016. //  Windows Media Player cannot read the CD. It may contain flaws. Turn on error correction and try again.%0
  2017. //
  2018. #define NS_E_CD_READ_ERROR_NO_CORRECTION _HRESULT_TYPEDEF_(0xC00D0FABL)
  2019.  
  2020. //
  2021. // MessageId: NS_E_CD_READ_ERROR
  2022. //
  2023. // MessageText:
  2024. //
  2025. //  Windows Media Player cannot read the CD. Be sure the CD is free of dirt and scratches and the CD-ROM drive is functioning properly.%0
  2026. //
  2027. #define NS_E_CD_READ_ERROR               _HRESULT_TYPEDEF_(0xC00D0FACL)
  2028.  
  2029. //
  2030. // MessageId: NS_E_CD_SLOW_COPY
  2031. //
  2032. // MessageText:
  2033. //
  2034. //  To speed up the copy process, do not play CD tracks while copying.%0
  2035. //
  2036. #define NS_E_CD_SLOW_COPY                _HRESULT_TYPEDEF_(0xC00D0FADL)
  2037.  
  2038. //
  2039. // MessageId: NS_E_CD_COPYTO_CD
  2040. //
  2041. // MessageText:
  2042. //
  2043. //  Cannot copy directly from a CDROM to a CD drive.%0
  2044. //
  2045. #define NS_E_CD_COPYTO_CD                _HRESULT_TYPEDEF_(0xC00D0FAEL)
  2046.  
  2047. //
  2048. // MessageId: NS_E_MIXER_NODRIVER
  2049. //
  2050. // MessageText:
  2051. //
  2052. //  Could not open a sound mixer driver.%0
  2053. //
  2054. #define NS_E_MIXER_NODRIVER              _HRESULT_TYPEDEF_(0xC00D0FAFL)
  2055.  
  2056. //
  2057. // MessageId: NS_E_REDBOOK_ENABLED_WHILE_COPYING
  2058. //
  2059. // MessageText:
  2060. //
  2061. //  Windows Media Player has detected that a setting for the CD-ROM drive will cause audio CDs to copy incorrectly; no audio is copied. Change the CD-ROM drive setting in Device Manager, and then try again.%0
  2062. //
  2063. #define NS_E_REDBOOK_ENABLED_WHILE_COPYING _HRESULT_TYPEDEF_(0xC00D0FB0L)
  2064.  
  2065. //
  2066. // MessageId: NS_E_CD_REFRESH
  2067. //
  2068. // MessageText:
  2069. //
  2070. //  Trying to refresh the CD playlist.%0
  2071. //
  2072. #define NS_E_CD_REFRESH                  _HRESULT_TYPEDEF_(0xC00D0FB1L)
  2073.  
  2074. //
  2075. // MessageId: NS_E_CD_DRIVER_PROBLEM
  2076. //
  2077. // MessageText:
  2078. //
  2079. //  Windows Media Player must switch to analog  mode  because there is a problem reading the CD-ROM drive in digital mode. Verify that the CD-ROM drive is installed correctly or try to update the drivers for the CD-ROM drive, and then try to use digital mode again.%0
  2080. //
  2081. #define NS_E_CD_DRIVER_PROBLEM           _HRESULT_TYPEDEF_(0xC00D0FB2L)
  2082.  
  2083. //
  2084. // MessageId: NS_E_WONT_DO_DIGITAL
  2085. //
  2086. // MessageText:
  2087. //
  2088. //  Windows Media Player must switch to analog mode because there is a problem reading the CD-ROM drive  in digital mode.%0
  2089. //
  2090. #define NS_E_WONT_DO_DIGITAL             _HRESULT_TYPEDEF_(0xC00D0FB3L)
  2091.  
  2092. //
  2093. // WMP IWMPXMLParser Error codes
  2094. //
  2095. //
  2096. // MessageId: NS_E_WMPXML_NOERROR
  2097. //
  2098. // MessageText:
  2099. //
  2100. //  A call was made to GetParseError on the XML parser but there was no error to retrieve.%0
  2101. //
  2102. #define NS_E_WMPXML_NOERROR              _HRESULT_TYPEDEF_(0xC00D0FB4L)
  2103.  
  2104. //
  2105. // MessageId: NS_E_WMPXML_ENDOFDATA
  2106. //
  2107. // MessageText:
  2108. //
  2109. //  The XML Parser ran out of data while parsing.%0
  2110. //
  2111. #define NS_E_WMPXML_ENDOFDATA            _HRESULT_TYPEDEF_(0xC00D0FB5L)
  2112.  
  2113. //
  2114. // MessageId: NS_E_WMPXML_PARSEERROR
  2115. //
  2116. // MessageText:
  2117. //
  2118. //  A generic parse error occurred in the XML parser but no information is available.%0
  2119. //
  2120. #define NS_E_WMPXML_PARSEERROR           _HRESULT_TYPEDEF_(0xC00D0FB6L)
  2121.  
  2122. //
  2123. // MessageId: NS_E_WMPXML_ATTRIBUTENOTFOUND
  2124. //
  2125. // MessageText:
  2126. //
  2127. //  A call get GetNamedAttribute or GetNamedAttributeIndex on the XML parser resulted in the index not being found.%0
  2128. //
  2129. #define NS_E_WMPXML_ATTRIBUTENOTFOUND    _HRESULT_TYPEDEF_(0xC00D0FB7L)
  2130.  
  2131. //
  2132. // MessageId: NS_E_WMPXML_PINOTFOUND
  2133. //
  2134. // MessageText:
  2135. //
  2136. //  A call was made go GetNamedPI on the XML parser, but the requested Processing Instruction was not found.%0
  2137. //
  2138. #define NS_E_WMPXML_PINOTFOUND           _HRESULT_TYPEDEF_(0xC00D0FB8L)
  2139.  
  2140. //
  2141. // MessageId: NS_E_WMPXML_EMPTYDOC
  2142. //
  2143. // MessageText:
  2144. //
  2145. //  Persist was called on the XML parser, but the parser has no data to persist.%0
  2146. //
  2147. #define NS_E_WMPXML_EMPTYDOC             _HRESULT_TYPEDEF_(0xC00D0FB9L)
  2148.  
  2149. //
  2150. // Miscellaneous Media Player Error codes
  2151. //
  2152. //
  2153. // MessageId: NS_E_WMP_WINDOWSAPIFAILURE
  2154. //
  2155. // MessageText:
  2156. //
  2157. //  A Windows API call failed but no error information was available.%0
  2158. //
  2159. #define NS_E_WMP_WINDOWSAPIFAILURE       _HRESULT_TYPEDEF_(0xC00D0FC8L)
  2160.  
  2161. //
  2162. // MessageId: NS_E_WMP_RECORDING_NOT_ALLOWED
  2163. //
  2164. // MessageText:
  2165. //
  2166. //  Windows Media Player cannot copy the file. Either the license restricts copying, or you must obtain a license to copy the file.%0
  2167. //
  2168. #define NS_E_WMP_RECORDING_NOT_ALLOWED   _HRESULT_TYPEDEF_(0xC00D0FC9L)
  2169.  
  2170. //
  2171. // MessageId: NS_E_DEVICE_NOT_READY
  2172. //
  2173. // MessageText:
  2174. //
  2175. //  Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and try again.%0
  2176. //
  2177. #define NS_E_DEVICE_NOT_READY            _HRESULT_TYPEDEF_(0xC00D0FCAL)
  2178.  
  2179. //
  2180. // MessageId: NS_E_DAMAGED_FILE
  2181. //
  2182. // MessageText:
  2183. //
  2184. //  Windows Media Player cannot play the file because it is either damaged or corrupt.%0
  2185. //
  2186. #define NS_E_DAMAGED_FILE                _HRESULT_TYPEDEF_(0xC00D0FCBL)
  2187.  
  2188. //
  2189. // MessageId: NS_E_MPDB_GENERIC
  2190. //
  2191. // MessageText:
  2192. //
  2193. //  An error occurred when the Player was attempting to access information in your media library. Try closing and then reopening the Player.%0
  2194. //
  2195. #define NS_E_MPDB_GENERIC                _HRESULT_TYPEDEF_(0xC00D0FCCL)
  2196.  
  2197. //
  2198. // MessageId: NS_E_FILE_FAILED_CHECKS
  2199. //
  2200. // MessageText:
  2201. //
  2202. //  The file cannot be added to Media Library because it is smaller than the minimum-size requirement. Adjust the size requirements, and then try again.%0
  2203. //
  2204. #define NS_E_FILE_FAILED_CHECKS          _HRESULT_TYPEDEF_(0xC00D0FCDL)
  2205.  
  2206. //
  2207. // MessageId: NS_E_MEDIA_LIBRARY_FAILED
  2208. //
  2209. // MessageText:
  2210. //
  2211. //  Windows Media Player could not create Media Library. Check with your system administrator to get the necessary permissions to create Media Library on your computer, and then try installing the Player again.%0
  2212. //
  2213. #define NS_E_MEDIA_LIBRARY_FAILED        _HRESULT_TYPEDEF_(0xC00D0FCEL)
  2214.  
  2215. //
  2216. // MessageId: NS_E_SHARING_VIOLATION
  2217. //
  2218. // MessageText:
  2219. //
  2220. //  The file is already in use. Close other programs that may be using the file, or stop playing the file, and try again.%0
  2221. //
  2222. #define NS_E_SHARING_VIOLATION           _HRESULT_TYPEDEF_(0xC00D0FCFL)
  2223.  
  2224. //
  2225. // MessageId: NS_E_NO_ERROR_STRING_FOUND
  2226. //
  2227. // MessageText:
  2228. //
  2229. //  Windows Media Player has encountered an unknown error.%0
  2230. //
  2231. #define NS_E_NO_ERROR_STRING_FOUND       _HRESULT_TYPEDEF_(0xC00D0FD0L)
  2232.  
  2233. //
  2234. // MessageId: NS_E_WMPOCX_NO_REMOTE_CORE
  2235. //
  2236. // MessageText:
  2237. //
  2238. //  The Windows Media Player control was unable to connect to remote media services, but will continue with local media services.%0
  2239. //
  2240. #define NS_E_WMPOCX_NO_REMOTE_CORE       _HRESULT_TYPEDEF_(0xC00D0FD1L)
  2241.  
  2242. //
  2243. // MessageId: NS_E_WMPOCX_NO_ACTIVE_CORE
  2244. //
  2245. // MessageText:
  2246. //
  2247. //  The requested method or property is not available because the Windows Media Player control has not been properly activated.%0
  2248. //
  2249. #define NS_E_WMPOCX_NO_ACTIVE_CORE       _HRESULT_TYPEDEF_(0xC00D0FD2L)
  2250.  
  2251. //
  2252. // MessageId: NS_E_WMPOCX_NOT_RUNNING_REMOTELY
  2253. //
  2254. // MessageText:
  2255. //
  2256. //  Windows Media Player ActiveX control is not running in remote mode.%0
  2257. //
  2258. #define NS_E_WMPOCX_NOT_RUNNING_REMOTELY _HRESULT_TYPEDEF_(0xC00D0FD3L)
  2259.  
  2260. //
  2261. // MessageId: NS_E_WMPOCX_NO_REMOTE_WINDOW
  2262. //
  2263. // MessageText:
  2264. //
  2265. //  An error occurred when trying to get remote Windows Media Player window.%0
  2266. //
  2267. #define NS_E_WMPOCX_NO_REMOTE_WINDOW     _HRESULT_TYPEDEF_(0xC00D0FD4L)
  2268.  
  2269. //
  2270. // MessageId: NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE
  2271. //
  2272. // MessageText:
  2273. //
  2274. //  Windows Media Player has encountered an unknown error.%0
  2275. //
  2276. #define NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE _HRESULT_TYPEDEF_(0xC00D0FD5L)
  2277.  
  2278. //
  2279. // MessageId: NS_E_PLUGIN_NOTSHUTDOWN
  2280. //
  2281. // MessageText:
  2282. //
  2283. //  Windows Media Player was not closed properly. A damaged or incompatible plug-in may have caused the problem to occur. As a precaution, all third-party plug-ins have been disabled.%0
  2284. //
  2285. #define NS_E_PLUGIN_NOTSHUTDOWN          _HRESULT_TYPEDEF_(0xC00D0FD6L)
  2286.  
  2287. //
  2288. // MessageId: NS_E_WMP_CANNOT_FIND_FOLDER
  2289. //
  2290. // MessageText:
  2291. //
  2292. //  Windows Media Player cannot find the specified path. Be sure the path is typed correctly. If it is, the path does not exist in the specified location, or the computer where the path is located is offline.%0
  2293. //
  2294. #define NS_E_WMP_CANNOT_FIND_FOLDER      _HRESULT_TYPEDEF_(0xC00D0FD7L)
  2295.  
  2296. //
  2297. // MessageId: NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED
  2298. //
  2299. // MessageText:
  2300. //
  2301. //  Windows Media Player cannot copy streaming media.%0
  2302. //
  2303. #define NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D0FD8L)
  2304.  
  2305. //
  2306. // MessageId: NS_E_WMP_PLUGINDLL_NOTFOUND
  2307. //
  2308. // MessageText:
  2309. //
  2310. //  Windows Media Player cannot find the selected plug-in. The Player will try to remove it from the menu. To use this plug-in, install it again.%0
  2311. //
  2312. #define NS_E_WMP_PLUGINDLL_NOTFOUND      _HRESULT_TYPEDEF_(0xC00D0FD9L)
  2313.  
  2314. //
  2315. // MessageId: NS_E_NEED_TO_ASK_USER
  2316. //
  2317. // MessageText:
  2318. //
  2319. //  Action requires input from the user.%0
  2320. //
  2321. #define NS_E_NEED_TO_ASK_USER            _HRESULT_TYPEDEF_(0xC00D0FDAL)
  2322.  
  2323. //
  2324. // MessageId: NS_E_WMPOCX_PLAYER_NOT_DOCKED
  2325. //
  2326. // MessageText:
  2327. //
  2328. //  The Windows Media Player control must be in a docked state for this action to succeed.%0
  2329. //
  2330. #define NS_E_WMPOCX_PLAYER_NOT_DOCKED    _HRESULT_TYPEDEF_(0xC00D0FDBL)
  2331.  
  2332. //
  2333. // MessageId: NS_E_WMP_EXTERNAL_NOTREADY
  2334. //
  2335. // MessageText:
  2336. //
  2337. //  Media Player external object is not ready.%0
  2338. //
  2339. #define NS_E_WMP_EXTERNAL_NOTREADY       _HRESULT_TYPEDEF_(0xC00D0FDCL)
  2340.  
  2341. //
  2342. // MessageId: NS_E_WMP_MLS_STALE_DATA
  2343. //
  2344. // MessageText:
  2345. //
  2346. //  Metadata is stale. The operation failed.%0
  2347. //
  2348. #define NS_E_WMP_MLS_STALE_DATA          _HRESULT_TYPEDEF_(0xC00D0FDDL)    
  2349.  
  2350. //
  2351. // Generic Media PlayerUI error codes
  2352. //
  2353. //
  2354. // MessageId: NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED
  2355. //
  2356. // MessageText:
  2357. //
  2358. //  The control (%s) does not support creation of sub-controls, yet (%d) sub-controls have been specified.%0
  2359. //
  2360. #define NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED _HRESULT_TYPEDEF_(0xC00D0FDEL)
  2361.  
  2362. //
  2363. // MessageId: NS_E_WMP_UI_VERSIONMISMATCH
  2364. //
  2365. // MessageText:
  2366. //
  2367. //  Version mismatch: (%.1f required, %.1f found).%0
  2368. //
  2369. #define NS_E_WMP_UI_VERSIONMISMATCH      _HRESULT_TYPEDEF_(0xC00D0FDFL)
  2370.  
  2371. //
  2372. // MessageId: NS_E_WMP_UI_NOTATHEMEFILE
  2373. //
  2374. // MessageText:
  2375. //
  2376. //  The layout manager was given valid XML that wasn't a theme file.%0
  2377. //
  2378. #define NS_E_WMP_UI_NOTATHEMEFILE        _HRESULT_TYPEDEF_(0xC00D0FE0L)
  2379.  
  2380. //
  2381. // MessageId: NS_E_WMP_UI_SUBELEMENTNOTFOUND
  2382. //
  2383. // MessageText:
  2384. //
  2385. //  The %s subelement could not be found on the %s object.%0
  2386. //
  2387. #define NS_E_WMP_UI_SUBELEMENTNOTFOUND   _HRESULT_TYPEDEF_(0xC00D0FE1L)
  2388.  
  2389. //
  2390. // MessageId: NS_E_WMP_UI_VERSIONPARSE
  2391. //
  2392. // MessageText:
  2393. //
  2394. //  An error occurred parsing the version tag.\nValid version tags are of the form:\n\n\t<?wmp version='1.0'?>.%0
  2395. //
  2396. #define NS_E_WMP_UI_VERSIONPARSE         _HRESULT_TYPEDEF_(0xC00D0FE2L)
  2397.  
  2398. //
  2399. // MessageId: NS_E_WMP_UI_VIEWIDNOTFOUND
  2400. //
  2401. // MessageText:
  2402. //
  2403. //  The view specified in for the 'currentViewID' property (%s) was not found in this theme file.%0
  2404. //
  2405. #define NS_E_WMP_UI_VIEWIDNOTFOUND       _HRESULT_TYPEDEF_(0xC00D0FE3L)
  2406.  
  2407. //
  2408. // MessageId: NS_E_WMP_UI_PASSTHROUGH
  2409. //
  2410. // MessageText:
  2411. //
  2412. //  This error used internally for hit testing.%0
  2413. //
  2414. #define NS_E_WMP_UI_PASSTHROUGH          _HRESULT_TYPEDEF_(0xC00D0FE4L)
  2415.  
  2416. //
  2417. // MessageId: NS_E_WMP_UI_OBJECTNOTFOUND
  2418. //
  2419. // MessageText:
  2420. //
  2421. //  Attributes were specified for the %s object, but the object was not available to send them to.%0
  2422. //
  2423. #define NS_E_WMP_UI_OBJECTNOTFOUND       _HRESULT_TYPEDEF_(0xC00D0FE5L)
  2424.  
  2425. //
  2426. // MessageId: NS_E_WMP_UI_SECONDHANDLER
  2427. //
  2428. // MessageText:
  2429. //
  2430. //  The %s event already has a handler, the second handler was ignored.%0
  2431. //
  2432. #define NS_E_WMP_UI_SECONDHANDLER        _HRESULT_TYPEDEF_(0xC00D0FE6L)
  2433.  
  2434. //
  2435. // MessageId: NS_E_WMP_UI_NOSKININZIP
  2436. //
  2437. // MessageText:
  2438. //
  2439. //  No .wms file found in skin archive.%0
  2440. //
  2441. #define NS_E_WMP_UI_NOSKININZIP          _HRESULT_TYPEDEF_(0xC00D0FE7L)
  2442.  
  2443. //
  2444. // MessageId: NS_S_WMP_UI_VERSIONMISMATCH
  2445. //
  2446. // MessageText:
  2447. //
  2448. //  An upgrade may be needed for the theme manager to correctly show this skin. Skin reports version: %.1f.%0
  2449. //
  2450. #define NS_S_WMP_UI_VERSIONMISMATCH      _HRESULT_TYPEDEF_(0x000D0FE8L)
  2451.  
  2452. //
  2453. // MessageId: NS_S_WMP_EXCEPTION
  2454. //
  2455. // MessageText:
  2456. //
  2457. //  An error occurred in one of the UI components.%0
  2458. //
  2459. #define NS_S_WMP_EXCEPTION               _HRESULT_TYPEDEF_(0x000D0FE9L)
  2460.  
  2461. //
  2462. // MessageId: NS_E_WMP_URLDOWNLOADFAILED
  2463. //
  2464. // MessageText:
  2465. //
  2466. //  Windows Media Player cannot save the file.%0
  2467. //
  2468. #define NS_E_WMP_URLDOWNLOADFAILED       _HRESULT_TYPEDEF_(0xC00D0FEAL)
  2469.  
  2470. //
  2471. // MessageId: NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN
  2472. //
  2473. // MessageText:
  2474. //
  2475. //  The Windows Media Player Control was unable to load the requested uiMode and could not successfully roll back to the existing uiMode.%0
  2476. //
  2477. #define NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN  _HRESULT_TYPEDEF_(0xC00D0FEBL)
  2478.  
  2479. //
  2480. // MessageId: NS_E_WMP_INVALID_SKIN
  2481. //
  2482. // MessageText:
  2483. //
  2484. //  The skin file is invalid.%0
  2485. //
  2486. #define NS_E_WMP_INVALID_SKIN            _HRESULT_TYPEDEF_(0xC00D0FECL)
  2487.  
  2488. //
  2489. // MessageId: NS_E_WMP_SENDMAILFAILED
  2490. //
  2491. // MessageText:
  2492. //
  2493. //  Windows Media Player cannot send the link because your e-mail program is not responding. Verify that your e-mail program is configured properly, and then try again. For more information about e-mail, see Windows Help%0
  2494. //
  2495. #define NS_E_WMP_SENDMAILFAILED          _HRESULT_TYPEDEF_(0xC00D0FEDL)
  2496.  
  2497. //Save As
  2498. //
  2499. // MessageId: NS_E_WMP_SAVEAS_READONLY
  2500. //
  2501. // MessageText:
  2502. //
  2503. //  The Windows Media Player cannot overwrite a read only file. Choose another file to save as or change the file attributes.%0
  2504. //
  2505. #define NS_E_WMP_SAVEAS_READONLY         _HRESULT_TYPEDEF_(0xC00D0FF0L)
  2506.  
  2507. //
  2508. // WMP Regional button control
  2509. //
  2510. //
  2511. // MessageId: NS_E_WMP_RBC_JPGMAPPINGIMAGE
  2512. //
  2513. // MessageText:
  2514. //
  2515. //  JPG Images are not recommended for use as a mappingImage.%0
  2516. //
  2517. #define NS_E_WMP_RBC_JPGMAPPINGIMAGE     _HRESULT_TYPEDEF_(0xC00D1004L)
  2518.  
  2519. //
  2520. // MessageId: NS_E_WMP_JPGTRANSPARENCY
  2521. //
  2522. // MessageText:
  2523. //
  2524. //  JPG Images are not recommended when using a transparencyColor.%0
  2525. //
  2526. #define NS_E_WMP_JPGTRANSPARENCY         _HRESULT_TYPEDEF_(0xC00D1005L)
  2527.  
  2528. //
  2529. // WMP Slider control
  2530. //
  2531. //
  2532. // MessageId: NS_E_WMP_INVALID_MAX_VAL
  2533. //
  2534. // MessageText:
  2535. //
  2536. //  The Max property cannot be less than Min property.%0
  2537. //
  2538. #define NS_E_WMP_INVALID_MAX_VAL         _HRESULT_TYPEDEF_(0xC00D1009L)
  2539.  
  2540. //
  2541. // MessageId: NS_E_WMP_INVALID_MIN_VAL
  2542. //
  2543. // MessageText:
  2544. //
  2545. //  The Min property cannot be greater than Max property.%0
  2546. //
  2547. #define NS_E_WMP_INVALID_MIN_VAL         _HRESULT_TYPEDEF_(0xC00D100AL)
  2548.  
  2549. //
  2550. // WMP CustomSlider control
  2551. //
  2552. //
  2553. // MessageId: NS_E_WMP_CS_JPGPOSITIONIMAGE
  2554. //
  2555. // MessageText:
  2556. //
  2557. //  JPG Images are not recommended for use as a positionImage.%0
  2558. //
  2559. #define NS_E_WMP_CS_JPGPOSITIONIMAGE     _HRESULT_TYPEDEF_(0xC00D100EL)
  2560.  
  2561. //
  2562. // MessageId: NS_E_WMP_CS_NOTEVENLYDIVISIBLE
  2563. //
  2564. // MessageText:
  2565. //
  2566. //  The (%s) image's size is not evenly divisible by the positionImage's size.%0
  2567. //
  2568. #define NS_E_WMP_CS_NOTEVENLYDIVISIBLE   _HRESULT_TYPEDEF_(0xC00D100FL)
  2569.  
  2570. //
  2571. // WMP ZIP Decoder
  2572. //
  2573. //
  2574. // MessageId: NS_E_WMPZIP_NOTAZIPFILE
  2575. //
  2576. // MessageText:
  2577. //
  2578. //  The ZIP reader opened a file and its signature didn't match that of ZIP files.%0
  2579. //
  2580. #define NS_E_WMPZIP_NOTAZIPFILE          _HRESULT_TYPEDEF_(0xC00D1018L)
  2581.  
  2582. //
  2583. // MessageId: NS_E_WMPZIP_CORRUPT
  2584. //
  2585. // MessageText:
  2586. //
  2587. //  The ZIP reader has detected that the file is corrupt.%0
  2588. //
  2589. #define NS_E_WMPZIP_CORRUPT              _HRESULT_TYPEDEF_(0xC00D1019L)
  2590.  
  2591. //
  2592. // MessageId: NS_E_WMPZIP_FILENOTFOUND
  2593. //
  2594. // MessageText:
  2595. //
  2596. //  GetFileStream, SaveToFile, or SaveTemp file was called on the ZIP reader with a filename that was not found in the zip file.%0
  2597. //
  2598. #define NS_E_WMPZIP_FILENOTFOUND         _HRESULT_TYPEDEF_(0xC00D101AL)
  2599.  
  2600. //
  2601. // WMP Image Decoding Error codes
  2602. //
  2603. //
  2604. // MessageId: NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED
  2605. //
  2606. // MessageText:
  2607. //
  2608. //  Image type not supported.%0
  2609. //
  2610. #define NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D1022L)
  2611.  
  2612. //
  2613. // MessageId: NS_E_WMP_IMAGE_INVALID_FORMAT
  2614. //
  2615. // MessageText:
  2616. //
  2617. //  Image file may be corrupt.%0
  2618. //
  2619. #define NS_E_WMP_IMAGE_INVALID_FORMAT    _HRESULT_TYPEDEF_(0xC00D1023L)
  2620.  
  2621. //
  2622. // MessageId: NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE
  2623. //
  2624. // MessageText:
  2625. //
  2626. //  Unexpected end of file. GIF file may be corrupt.%0
  2627. //
  2628. #define NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE _HRESULT_TYPEDEF_(0xC00D1024L)
  2629.  
  2630. //
  2631. // MessageId: NS_E_WMP_GIF_INVALID_FORMAT
  2632. //
  2633. // MessageText:
  2634. //
  2635. //  Invalid GIF file.%0
  2636. //
  2637. #define NS_E_WMP_GIF_INVALID_FORMAT      _HRESULT_TYPEDEF_(0xC00D1025L)
  2638.  
  2639. //
  2640. // MessageId: NS_E_WMP_GIF_BAD_VERSION_NUMBER
  2641. //
  2642. // MessageText:
  2643. //
  2644. //  Invalid GIF version. Only 87a or 89a supported.%0
  2645. //
  2646. #define NS_E_WMP_GIF_BAD_VERSION_NUMBER  _HRESULT_TYPEDEF_(0xC00D1026L)
  2647.  
  2648. //
  2649. // MessageId: NS_E_WMP_GIF_NO_IMAGE_IN_FILE
  2650. //
  2651. // MessageText:
  2652. //
  2653. //  No images found in GIF file.%0
  2654. //
  2655. #define NS_E_WMP_GIF_NO_IMAGE_IN_FILE    _HRESULT_TYPEDEF_(0xC00D1027L)
  2656.  
  2657. //
  2658. // MessageId: NS_E_WMP_PNG_INVALIDFORMAT
  2659. //
  2660. // MessageText:
  2661. //
  2662. //  Invalid PNG image file format.%0
  2663. //
  2664. #define NS_E_WMP_PNG_INVALIDFORMAT       _HRESULT_TYPEDEF_(0xC00D1028L)
  2665.  
  2666. //
  2667. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH
  2668. //
  2669. // MessageText:
  2670. //
  2671. //  PNG bitdepth not supported.%0
  2672. //
  2673. #define NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH _HRESULT_TYPEDEF_(0xC00D1029L)
  2674.  
  2675. //
  2676. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION
  2677. //
  2678. // MessageText:
  2679. //
  2680. //  Compression format defined in PNG file not supported,%0
  2681. //
  2682. #define NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION _HRESULT_TYPEDEF_(0xC00D102AL)
  2683.  
  2684. //
  2685. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_FILTER
  2686. //
  2687. // MessageText:
  2688. //
  2689. //  Filter method defined in PNG file not supported.%0
  2690. //
  2691. #define NS_E_WMP_PNG_UNSUPPORTED_FILTER  _HRESULT_TYPEDEF_(0xC00D102BL)
  2692.  
  2693. //
  2694. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_INTERLACE
  2695. //
  2696. // MessageText:
  2697. //
  2698. //  Interlace method defined in PNG file not supported.%0
  2699. //
  2700. #define NS_E_WMP_PNG_UNSUPPORTED_INTERLACE _HRESULT_TYPEDEF_(0xC00D102CL)
  2701.  
  2702. //
  2703. // MessageId: NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC
  2704. //
  2705. // MessageText:
  2706. //
  2707. //  Bad CRC in PNG file.%0
  2708. //
  2709. #define NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC _HRESULT_TYPEDEF_(0xC00D102DL)
  2710.  
  2711. //
  2712. // MessageId: NS_E_WMP_BMP_INVALID_BITMASK
  2713. //
  2714. // MessageText:
  2715. //
  2716. //  Invalid bitmask in BMP file.%0
  2717. //
  2718. #define NS_E_WMP_BMP_INVALID_BITMASK     _HRESULT_TYPEDEF_(0xC00D102EL)
  2719.  
  2720. //
  2721. // MessageId: NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED
  2722. //
  2723. // MessageText:
  2724. //
  2725. //  Topdown DIB not supported.%0
  2726. //
  2727. #define NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D102FL)
  2728.  
  2729. //
  2730. // MessageId: NS_E_WMP_BMP_BITMAP_NOT_CREATED
  2731. //
  2732. // MessageText:
  2733. //
  2734. //  Bitmap could not be created.%0
  2735. //
  2736. #define NS_E_WMP_BMP_BITMAP_NOT_CREATED  _HRESULT_TYPEDEF_(0xC00D1030L)
  2737.  
  2738. //
  2739. // MessageId: NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED
  2740. //
  2741. // MessageText:
  2742. //
  2743. //  Compression format defined in BMP not supported.%0
  2744. //
  2745. #define NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED _HRESULT_TYPEDEF_(0xC00D1031L)
  2746.  
  2747. //
  2748. // MessageId: NS_E_WMP_BMP_INVALID_FORMAT
  2749. //
  2750. // MessageText:
  2751. //
  2752. //  Invalid Bitmap format.%0
  2753. //
  2754. #define NS_E_WMP_BMP_INVALID_FORMAT      _HRESULT_TYPEDEF_(0xC00D1032L)
  2755.  
  2756. //
  2757. // MessageId: NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL
  2758. //
  2759. // MessageText:
  2760. //
  2761. //  JPEG Arithmetic coding not supported.%0
  2762. //
  2763. #define NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL _HRESULT_TYPEDEF_(0xC00D1033L)
  2764.  
  2765. //
  2766. // MessageId: NS_E_WMP_JPG_INVALID_FORMAT
  2767. //
  2768. // MessageText:
  2769. //
  2770. //  Invalid JPEG format.%0
  2771. //
  2772. #define NS_E_WMP_JPG_INVALID_FORMAT      _HRESULT_TYPEDEF_(0xC00D1034L)
  2773.  
  2774. //
  2775. // MessageId: NS_E_WMP_JPG_BAD_DCTSIZE
  2776. //
  2777. // MessageText:
  2778. //
  2779. //  Invalid JPEG format.%0
  2780. //
  2781. #define NS_E_WMP_JPG_BAD_DCTSIZE         _HRESULT_TYPEDEF_(0xC00D1035L)
  2782.  
  2783. //
  2784. // MessageId: NS_E_WMP_JPG_BAD_VERSION_NUMBER
  2785. //
  2786. // MessageText:
  2787. //
  2788. //  Internal version error. Unexpected JPEG library version.%0
  2789. //
  2790. #define NS_E_WMP_JPG_BAD_VERSION_NUMBER  _HRESULT_TYPEDEF_(0xC00D1036L)
  2791.  
  2792. //
  2793. // MessageId: NS_E_WMP_JPG_BAD_PRECISION
  2794. //
  2795. // MessageText:
  2796. //
  2797. //  Internal JPEG Library error. Unsupported JPEG data precision.%0
  2798. //
  2799. #define NS_E_WMP_JPG_BAD_PRECISION       _HRESULT_TYPEDEF_(0xC00D1037L)
  2800.  
  2801. //
  2802. // MessageId: NS_E_WMP_JPG_CCIR601_NOTIMPL
  2803. //
  2804. // MessageText:
  2805. //
  2806. //  JPEG CCIR601 not supported.%0
  2807. //
  2808. #define NS_E_WMP_JPG_CCIR601_NOTIMPL     _HRESULT_TYPEDEF_(0xC00D1038L)
  2809.  
  2810. //
  2811. // MessageId: NS_E_WMP_JPG_NO_IMAGE_IN_FILE
  2812. //
  2813. // MessageText:
  2814. //
  2815. //  No image found in JPEG file.%0
  2816. //
  2817. #define NS_E_WMP_JPG_NO_IMAGE_IN_FILE    _HRESULT_TYPEDEF_(0xC00D1039L)
  2818.  
  2819. //
  2820. // MessageId: NS_E_WMP_JPG_READ_ERROR
  2821. //
  2822. // MessageText:
  2823. //
  2824. //  Could not read JPEG file.%0
  2825. //
  2826. #define NS_E_WMP_JPG_READ_ERROR          _HRESULT_TYPEDEF_(0xC00D103AL)
  2827.  
  2828. //
  2829. // MessageId: NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL
  2830. //
  2831. // MessageText:
  2832. //
  2833. //  JPEG Fractional sampling not supported.%0
  2834. //
  2835. #define NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL _HRESULT_TYPEDEF_(0xC00D103BL)
  2836.  
  2837. //
  2838. // MessageId: NS_E_WMP_JPG_IMAGE_TOO_BIG
  2839. //
  2840. // MessageText:
  2841. //
  2842. //  JPEG image too large. Maximum image size supported is 65500 X 65500.%0
  2843. //
  2844. #define NS_E_WMP_JPG_IMAGE_TOO_BIG       _HRESULT_TYPEDEF_(0xC00D103CL)
  2845.  
  2846. //
  2847. // MessageId: NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE
  2848. //
  2849. // MessageText:
  2850. //
  2851. //  Unexpected end of file reached in JPEG file.%0
  2852. //
  2853. #define NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE _HRESULT_TYPEDEF_(0xC00D103DL)
  2854.  
  2855. //
  2856. // MessageId: NS_E_WMP_JPG_SOF_UNSUPPORTED
  2857. //
  2858. // MessageText:
  2859. //
  2860. //  Unsupported JPEG SOF marker found.%0
  2861. //
  2862. #define NS_E_WMP_JPG_SOF_UNSUPPORTED     _HRESULT_TYPEDEF_(0xC00D103EL)
  2863.  
  2864. //
  2865. // MessageId: NS_E_WMP_JPG_UNKNOWN_MARKER
  2866. //
  2867. // MessageText:
  2868. //
  2869. //  Unknown JPEG marker found.%0
  2870. //
  2871. #define NS_E_WMP_JPG_UNKNOWN_MARKER      _HRESULT_TYPEDEF_(0xC00D103FL)
  2872.  
  2873. //
  2874. // MessageId: NS_S_WMP_LOADED_GIF_IMAGE
  2875. //
  2876. // MessageText:
  2877. //
  2878. //  Successfully loaded a GIF file.%0
  2879. //
  2880. #define NS_S_WMP_LOADED_GIF_IMAGE        _HRESULT_TYPEDEF_(0x000D1040L)
  2881.  
  2882. //
  2883. // MessageId: NS_S_WMP_LOADED_PNG_IMAGE
  2884. //
  2885. // MessageText:
  2886. //
  2887. //  Successfully loaded a PNG file.%0
  2888. //
  2889. #define NS_S_WMP_LOADED_PNG_IMAGE        _HRESULT_TYPEDEF_(0x000D1041L)
  2890.  
  2891. //
  2892. // MessageId: NS_S_WMP_LOADED_BMP_IMAGE
  2893. //
  2894. // MessageText:
  2895. //
  2896. //  Successfully loaded a BMP file.%0
  2897. //
  2898. #define NS_S_WMP_LOADED_BMP_IMAGE        _HRESULT_TYPEDEF_(0x000D1042L)
  2899.  
  2900. //
  2901. // MessageId: NS_S_WMP_LOADED_JPG_IMAGE
  2902. //
  2903. // MessageText:
  2904. //
  2905. //  Successfully loaded a JPG file.%0
  2906. //
  2907. #define NS_S_WMP_LOADED_JPG_IMAGE        _HRESULT_TYPEDEF_(0x000D1043L)
  2908.  
  2909. //
  2910. // WMP WM Runtime Error codes
  2911. //
  2912. //
  2913. // MessageId: NS_E_WMG_RATEUNAVAILABLE
  2914. //
  2915. // MessageText:
  2916. //
  2917. //  The requested playback rate is unavailable on this content.%0
  2918. //
  2919. #define NS_E_WMG_RATEUNAVAILABLE         _HRESULT_TYPEDEF_(0xC00D104AL)
  2920.  
  2921. //
  2922. // MessageId: NS_E_WMG_PLUGINUNAVAILABLE
  2923. //
  2924. // MessageText:
  2925. //
  2926. //  The rendering or digital signal processing plugin could not be instantiated.%0
  2927. //
  2928. #define NS_E_WMG_PLUGINUNAVAILABLE       _HRESULT_TYPEDEF_(0xC00D104BL)
  2929.  
  2930. //
  2931. // MessageId: NS_E_WMG_CANNOTQUEUE
  2932. //
  2933. // MessageText:
  2934. //
  2935. //  The file cannot be queued for seamless playback.%0
  2936. //
  2937. #define NS_E_WMG_CANNOTQUEUE             _HRESULT_TYPEDEF_(0xC00D104CL)
  2938.  
  2939. //
  2940. // MessageId: NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED
  2941. //
  2942. // MessageText:
  2943. //
  2944. //  Windows Media Player cannot acquire the license for a file that is being prerolled.%0
  2945. //
  2946. #define NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED _HRESULT_TYPEDEF_(0xC00D104DL)
  2947.  
  2948. //
  2949. // MessageId: NS_E_WMG_UNEXPECTEDPREROLLSTATUS
  2950. //
  2951. // MessageText:
  2952. //
  2953. //  Windows Media Player received an unexpected message while attempting to preroll a file.%0
  2954. //
  2955. #define NS_E_WMG_UNEXPECTEDPREROLLSTATUS _HRESULT_TYPEDEF_(0xC00D104EL)
  2956.  
  2957. //
  2958. // MessageId: NS_E_WMG_INVALIDSTATE
  2959. //
  2960. // MessageText:
  2961. //
  2962. //  Operation attempted in an invalid graph state.%0
  2963. //
  2964. #define NS_E_WMG_INVALIDSTATE            _HRESULT_TYPEDEF_(0xC00D1054L)
  2965.  
  2966. //
  2967. // MessageId: NS_E_WMG_SINKALREADYEXISTS
  2968. //
  2969. // MessageText:
  2970. //
  2971. //  A renderer cannot be inserted in a stream while one already exists.%0
  2972. //
  2973. #define NS_E_WMG_SINKALREADYEXISTS       _HRESULT_TYPEDEF_(0xC00D1055L)
  2974.  
  2975. //
  2976. // MessageId: NS_E_WMG_NOSDKINTERFACE
  2977. //
  2978. // MessageText:
  2979. //
  2980. //  A necessary WM SDK interface to complete the operation doesn't exist at this time.%0
  2981. //
  2982. #define NS_E_WMG_NOSDKINTERFACE          _HRESULT_TYPEDEF_(0xC00D1056L)
  2983.  
  2984. //
  2985. // MessageId: NS_E_WMG_NOTALLOUTPUTSRENDERED
  2986. //
  2987. // MessageText:
  2988. //
  2989. //  Windows Media Player cannot play the file. The file may be formatted with an unsupported codec, or the Player could not download the codec.%0
  2990. //
  2991. #define NS_E_WMG_NOTALLOUTPUTSRENDERED   _HRESULT_TYPEDEF_(0xC00D1057L)
  2992.  
  2993. //
  2994. // MessageId: NS_E_WMG_FILETRANSFERNOTALLOWED
  2995. //
  2996. // MessageText:
  2997. //
  2998. //  File transfer streams are not allowed in the stand alone player.%0
  2999. //
  3000. #define NS_E_WMG_FILETRANSFERNOTALLOWED  _HRESULT_TYPEDEF_(0xC00D1058L)
  3001.  
  3002. //
  3003. // MessageId: NS_E_WMR_UNSUPPORTEDSTREAM
  3004. //
  3005. // MessageText:
  3006. //
  3007. //  Windows Media Player cannot play the file. The Player does not support the format you are trying to play.%0
  3008. //
  3009. #define NS_E_WMR_UNSUPPORTEDSTREAM       _HRESULT_TYPEDEF_(0xC00D1059L)
  3010.  
  3011. //
  3012. // MessageId: NS_E_WMR_PINNOTFOUND
  3013. //
  3014. // MessageText:
  3015. //
  3016. //  An operation was attempted on a pin that doesn't exist in the DirectShow filter graph.%0
  3017. //
  3018. #define NS_E_WMR_PINNOTFOUND             _HRESULT_TYPEDEF_(0xC00D105AL)
  3019.  
  3020. //
  3021. // MessageId: NS_E_WMR_WAITINGONFORMATSWITCH
  3022. //
  3023. // MessageText:
  3024. //
  3025. //  Specified operation cannot be completed while waiting for a media format change from the SDK.%0
  3026. //
  3027. #define NS_E_WMR_WAITINGONFORMATSWITCH   _HRESULT_TYPEDEF_(0xC00D105BL)
  3028.  
  3029. //
  3030. // MessageId: NS_E_WMR_NOSOURCEFILTER
  3031. //
  3032. // MessageText:
  3033. //
  3034. //  Specified operation cannot be completed because the source filter does not exist.%0
  3035. //
  3036. #define NS_E_WMR_NOSOURCEFILTER          _HRESULT_TYPEDEF_(0xC00D105CL)
  3037.  
  3038. //
  3039. // MessageId: NS_E_WMR_PINTYPENOMATCH
  3040. //
  3041. // MessageText:
  3042. //
  3043. //  The specified type does not match this pin.%0
  3044. //
  3045. #define NS_E_WMR_PINTYPENOMATCH          _HRESULT_TYPEDEF_(0xC00D105DL)
  3046.  
  3047. //
  3048. // MessageId: NS_E_WMR_NOCALLBACKAVAILABLE
  3049. //
  3050. // MessageText:
  3051. //
  3052. //  The WMR Source Filter does not have a callback available.%0
  3053. //
  3054. #define NS_E_WMR_NOCALLBACKAVAILABLE     _HRESULT_TYPEDEF_(0xC00D105EL)
  3055.  
  3056. //
  3057. // MessageId: NS_S_WMR_ALREADYRENDERED
  3058. //
  3059. // MessageText:
  3060. //
  3061. //  The specified stream has already been rendered.%0
  3062. //
  3063. #define NS_S_WMR_ALREADYRENDERED         _HRESULT_TYPEDEF_(0x000D105FL)
  3064.  
  3065. //
  3066. // MessageId: NS_S_WMR_PINTYPEPARTIALMATCH
  3067. //
  3068. // MessageText:
  3069. //
  3070. //  The specified type partially matches this pin type.%0
  3071. //
  3072. #define NS_S_WMR_PINTYPEPARTIALMATCH     _HRESULT_TYPEDEF_(0x000D1060L)
  3073.  
  3074. //
  3075. // MessageId: NS_S_WMR_PINTYPEFULLMATCH
  3076. //
  3077. // MessageText:
  3078. //
  3079. //  The specified type fully matches this pin type.%0
  3080. //
  3081. #define NS_S_WMR_PINTYPEFULLMATCH        _HRESULT_TYPEDEF_(0x000D1061L)
  3082.  
  3083. //
  3084. // MessageId: NS_E_WMR_SAMPLEPROPERTYNOTSET
  3085. //
  3086. // MessageText:
  3087. //
  3088. //  The specified property has not been set on this sample.%0
  3089. //
  3090. #define NS_E_WMR_SAMPLEPROPERTYNOTSET    _HRESULT_TYPEDEF_(0xC00D1062L)
  3091.  
  3092. //
  3093. // MessageId: NS_E_WMR_CANNOT_RENDER_BINARY_STREAM
  3094. //
  3095. // MessageText:
  3096. //
  3097. //  A plugin is required to correctly play this file. To determine if this plugin is available to download from the Web, click Web Help.%0
  3098. //
  3099. #define NS_E_WMR_CANNOT_RENDER_BINARY_STREAM _HRESULT_TYPEDEF_(0xC00D1063L)
  3100.  
  3101. //
  3102. // MessageId: NS_E_WMG_LICENSE_TAMPERED
  3103. //
  3104. // MessageText:
  3105. //
  3106. //  The file cannot be played, the content has been tampered.%0
  3107. //
  3108. #define NS_E_WMG_LICENSE_TAMPERED        _HRESULT_TYPEDEF_(0xC00D1064L)
  3109.  
  3110. //
  3111. // MessageId: NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM
  3112. //
  3113. // MessageText:
  3114. //
  3115. //  The content you are trying to play is protected content and the player will not render binary streams from protected content.%0
  3116. //
  3117. #define NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM _HRESULT_TYPEDEF_(0xC00D1065L)
  3118.  
  3119. //
  3120. // WMP Playlist Error codes
  3121. //
  3122. //
  3123. // MessageId: NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT
  3124. //
  3125. // MessageText:
  3126. //
  3127. //  The format of this file was not recognized as a valid playlist format.%0
  3128. //
  3129. #define NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT _HRESULT_TYPEDEF_(0xC00D1068L)
  3130.  
  3131. //
  3132. // MessageId: NS_E_ASX_INVALIDFORMAT
  3133. //
  3134. // MessageText:
  3135. //
  3136. //  This file was believed to be an ASX playlist, but the format was not recognized.%0
  3137. //
  3138. #define NS_E_ASX_INVALIDFORMAT           _HRESULT_TYPEDEF_(0xC00D1069L)
  3139.  
  3140. //
  3141. // MessageId: NS_E_ASX_INVALIDVERSION
  3142. //
  3143. // MessageText:
  3144. //
  3145. //  The version of this playlist is not supported. Click More Information to go to the Microsoft web site and see if there is a newer version of the player to install.%0
  3146. //
  3147. #define NS_E_ASX_INVALIDVERSION          _HRESULT_TYPEDEF_(0xC00D106AL)
  3148.  
  3149. //
  3150. // MessageId: NS_E_ASX_INVALID_REPEAT_BLOCK
  3151. //
  3152. // MessageText:
  3153. //
  3154. //  Format of a REPEAT loop within the current playlist file is invalid.%0
  3155. //
  3156. #define NS_E_ASX_INVALID_REPEAT_BLOCK    _HRESULT_TYPEDEF_(0xC00D106BL)
  3157.  
  3158. //
  3159. // MessageId: NS_E_ASX_NOTHING_TO_WRITE
  3160. //
  3161. // MessageText:
  3162. //
  3163. //  Windows Media Player cannot export the playlist because it is empty.%0
  3164. //
  3165. #define NS_E_ASX_NOTHING_TO_WRITE        _HRESULT_TYPEDEF_(0xC00D106CL)
  3166.  
  3167. //
  3168. // MessageId: NS_E_URLLIST_INVALIDFORMAT
  3169. //
  3170. // MessageText:
  3171. //
  3172. //  Windows Media Player does not recognize this file as a supported playlist.%0
  3173. //
  3174. #define NS_E_URLLIST_INVALIDFORMAT       _HRESULT_TYPEDEF_(0xC00D106DL)
  3175.  
  3176. //
  3177. // MessageId: NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST
  3178. //
  3179. // MessageText:
  3180. //
  3181. //  The specified attribute does not exist.%0
  3182. //
  3183. #define NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST _HRESULT_TYPEDEF_(0xC00D106EL)
  3184.  
  3185. //
  3186. // MessageId: NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS
  3187. //
  3188. // MessageText:
  3189. //
  3190. //  The specified attribute already exists.%0
  3191. //
  3192. #define NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS _HRESULT_TYPEDEF_(0xC00D106FL)
  3193.  
  3194. //
  3195. // MessageId: NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE
  3196. //
  3197. // MessageText:
  3198. //
  3199. //  Can not retrieve the specified attribute.%0
  3200. //
  3201. #define NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE _HRESULT_TYPEDEF_(0xC00D1070L)
  3202.  
  3203. //
  3204. // MessageId: NS_E_WMX_ITEM_DOES_NOT_EXIST
  3205. //
  3206. // MessageText:
  3207. //
  3208. //  The specified item does not exist in the current playlist.%0
  3209. //
  3210. #define NS_E_WMX_ITEM_DOES_NOT_EXIST     _HRESULT_TYPEDEF_(0xC00D1071L)
  3211.  
  3212. //
  3213. // MessageId: NS_E_WMX_ITEM_TYPE_ILLEGAL
  3214. //
  3215. // MessageText:
  3216. //
  3217. //  Items of the specified type can not be created within the current playlist.%0
  3218. //
  3219. #define NS_E_WMX_ITEM_TYPE_ILLEGAL       _HRESULT_TYPEDEF_(0xC00D1072L)
  3220.  
  3221. //
  3222. // MessageId: NS_E_WMX_ITEM_UNSETTABLE
  3223. //
  3224. // MessageText:
  3225. //
  3226. //  The specified item can not be set in the current playlist.%0
  3227. //
  3228. #define NS_E_WMX_ITEM_UNSETTABLE         _HRESULT_TYPEDEF_(0xC00D1073L)
  3229.  
  3230. //
  3231. // MessageId: NS_E_WMX_PLAYLIST_EMPTY
  3232. //
  3233. // MessageText:
  3234. //
  3235. //  The specified playlist is empty.%0
  3236. //
  3237. #define NS_E_WMX_PLAYLIST_EMPTY          _HRESULT_TYPEDEF_(0xC00D1074L)
  3238.  
  3239. //
  3240. // MessageId: NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED
  3241. //
  3242. // MessageText:
  3243. //
  3244. //  Playlist load error: The specified autoplaylist contains a filter type which is either invalid or is not installed on this computer%0
  3245. //
  3246. #define NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED _HRESULT_TYPEDEF_(0xC00D1075L)
  3247.  
  3248. //
  3249. // MessageId: NS_E_WMX_INVALID_FORMAT_OVER_NESTING
  3250. //
  3251. // MessageText:
  3252. //
  3253. //  Windows Media Player cannot play the file because the associated Windows Media metafile playlist is not valid.%0
  3254. //
  3255. #define NS_E_WMX_INVALID_FORMAT_OVER_NESTING _HRESULT_TYPEDEF_(0xC00D1076L)
  3256.  
  3257. //
  3258. // WMP Core  Error codes
  3259. //
  3260. //
  3261. // MessageId: NS_E_WMPCORE_NOSOURCEURLSTRING
  3262. //
  3263. // MessageText:
  3264. //
  3265. //  Windows Media Player cannot find the file. Be sure the path is typed correctly. If it is, the file may not exist in the specified location, or the computer where the file is stored may be offline.%0
  3266. //
  3267. #define NS_E_WMPCORE_NOSOURCEURLSTRING   _HRESULT_TYPEDEF_(0xC00D107CL)
  3268.  
  3269. //
  3270. // MessageId: NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT
  3271. //
  3272. // MessageText:
  3273. //
  3274. //  Failed to create the Global Interface Table.%0
  3275. //
  3276. #define NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT _HRESULT_TYPEDEF_(0xC00D107DL)
  3277.  
  3278. //
  3279. // MessageId: NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE
  3280. //
  3281. // MessageText:
  3282. //
  3283. //  Failed to get the marshaled graph event handler interface.%0
  3284. //
  3285. #define NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE _HRESULT_TYPEDEF_(0xC00D107EL)
  3286.  
  3287. //
  3288. // MessageId: NS_E_WMPCORE_BUFFERTOOSMALL
  3289. //
  3290. // MessageText:
  3291. //
  3292. //  Buffer is too small for copying media type.%0
  3293. //
  3294. #define NS_E_WMPCORE_BUFFERTOOSMALL      _HRESULT_TYPEDEF_(0xC00D107FL)
  3295.  
  3296. //
  3297. // MessageId: NS_E_WMPCORE_UNAVAILABLE
  3298. //
  3299. // MessageText:
  3300. //
  3301. //  Current state of the player does not allow the operation.%0
  3302. //
  3303. #define NS_E_WMPCORE_UNAVAILABLE         _HRESULT_TYPEDEF_(0xC00D1080L)
  3304.  
  3305. //
  3306. // MessageId: NS_E_WMPCORE_INVALIDPLAYLISTMODE
  3307. //
  3308. // MessageText:
  3309. //
  3310. //  Playlist manager does not understand the current play mode (shuffle, normal etc).%0
  3311. //
  3312. #define NS_E_WMPCORE_INVALIDPLAYLISTMODE _HRESULT_TYPEDEF_(0xC00D1081L)
  3313.  
  3314. //
  3315. // MessageId: NS_E_WMPCORE_ITEMNOTINPLAYLIST
  3316. //
  3317. // MessageText:
  3318. //
  3319. //  The item is not in the playlist.%0
  3320. //
  3321. #define NS_E_WMPCORE_ITEMNOTINPLAYLIST   _HRESULT_TYPEDEF_(0xC00D1086L)
  3322.  
  3323. //
  3324. // MessageId: NS_E_WMPCORE_PLAYLISTEMPTY
  3325. //
  3326. // MessageText:
  3327. //
  3328. //  There are no items in this playlist. Add items to the playlist, and try again.%0
  3329. //
  3330. #define NS_E_WMPCORE_PLAYLISTEMPTY       _HRESULT_TYPEDEF_(0xC00D1087L)
  3331.  
  3332. //
  3333. // MessageId: NS_E_WMPCORE_NOBROWSER
  3334. //
  3335. // MessageText:
  3336. //
  3337. //  The Web site cannot be accessed. A Web browser is not detected on your computer.%0
  3338. //
  3339. #define NS_E_WMPCORE_NOBROWSER           _HRESULT_TYPEDEF_(0xC00D1088L)
  3340.  
  3341. //
  3342. // MessageId: NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL
  3343. //
  3344. // MessageText:
  3345. //
  3346. //  Windows Media Player cannot find the specified file. Be sure the path is typed correctly. If it is, the file does not exist in the specified location, or the computer where the file is stored is offline.%0
  3347. //
  3348. #define NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL _HRESULT_TYPEDEF_(0xC00D1089L)
  3349.  
  3350. //
  3351. // MessageId: NS_E_WMPCORE_GRAPH_NOT_IN_LIST
  3352. //
  3353. // MessageText:
  3354. //
  3355. //  Graph with the specified URL was not found in the prerolled graph list.%0
  3356. //
  3357. #define NS_E_WMPCORE_GRAPH_NOT_IN_LIST   _HRESULT_TYPEDEF_(0xC00D108AL)
  3358.  
  3359. //
  3360. // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA
  3361. //
  3362. // MessageText:
  3363. //
  3364. //  There is only one item in the playlist.%0
  3365. //
  3366. #define NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA _HRESULT_TYPEDEF_(0xC00D108BL)
  3367.  
  3368. //
  3369. // MessageId: NS_E_WMPCORE_ERRORSINKNOTREGISTERED
  3370. //
  3371. // MessageText:
  3372. //
  3373. //  An error sink was never registered for the calling object.%0
  3374. //
  3375. #define NS_E_WMPCORE_ERRORSINKNOTREGISTERED _HRESULT_TYPEDEF_(0xC00D108CL)
  3376.  
  3377. //
  3378. // MessageId: NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE
  3379. //
  3380. // MessageText:
  3381. //
  3382. //  The error manager is not available to respond to errors.%0
  3383. //
  3384. #define NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE _HRESULT_TYPEDEF_(0xC00D108DL)
  3385.  
  3386. //
  3387. // MessageId: NS_E_WMPCORE_WEBHELPFAILED
  3388. //
  3389. // MessageText:
  3390. //
  3391. //  Failed launching WebHelp URL.%0
  3392. //
  3393. #define NS_E_WMPCORE_WEBHELPFAILED       _HRESULT_TYPEDEF_(0xC00D108EL)
  3394.  
  3395. //
  3396. // MessageId: NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED
  3397. //
  3398. // MessageText:
  3399. //
  3400. //  Could not resume playing next item in playlist.%0
  3401. //
  3402. #define NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED _HRESULT_TYPEDEF_(0xC00D108FL)
  3403.  
  3404. //
  3405. // MessageId: NS_E_WMPCORE_NO_REF_IN_ENTRY
  3406. //
  3407. // MessageText:
  3408. //
  3409. //  Windows Media Player cannot play the file because the associated Windows Media metafile playlist is not valid.%0
  3410. //
  3411. #define NS_E_WMPCORE_NO_REF_IN_ENTRY     _HRESULT_TYPEDEF_(0xC00D1090L)
  3412.  
  3413. //
  3414. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY
  3415. //
  3416. // MessageText:
  3417. //
  3418. //  An empty string for playlist attribute name was found.%0
  3419. //
  3420. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY _HRESULT_TYPEDEF_(0xC00D1091L)
  3421.  
  3422. //
  3423. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL
  3424. //
  3425. // MessageText:
  3426. //
  3427. //  An invalid playlist attribute name was found.%0
  3428. //
  3429. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1092L)
  3430.  
  3431. //
  3432. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY
  3433. //
  3434. // MessageText:
  3435. //
  3436. //  An empty string for a playlist attribute value was found.%0
  3437. //
  3438. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY _HRESULT_TYPEDEF_(0xC00D1093L)
  3439.  
  3440. //
  3441. // MessageId: NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL
  3442. //
  3443. // MessageText:
  3444. //
  3445. //  An illegal value for a playlist attribute was found.%0
  3446. //
  3447. #define NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1094L)
  3448.  
  3449. //
  3450. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY
  3451. //
  3452. // MessageText:
  3453. //
  3454. //  An empty string for a playlist item attribute name was found.%0
  3455. //
  3456. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY _HRESULT_TYPEDEF_(0xC00D1095L)
  3457.  
  3458. //
  3459. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL
  3460. //
  3461. // MessageText:
  3462. //
  3463. //  An illegal value for a playlist item attribute name was found.%0
  3464. //
  3465. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL _HRESULT_TYPEDEF_(0xC00D1096L)
  3466.  
  3467. //
  3468. // MessageId: NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY
  3469. //
  3470. // MessageText:
  3471. //
  3472. //  An illegal value for a playlist item attribute was found.%0
  3473. //
  3474. #define NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY _HRESULT_TYPEDEF_(0xC00D1097L)
  3475.  
  3476. //
  3477. // MessageId: NS_E_WMPCORE_LIST_ENTRY_NO_REF
  3478. //
  3479. // MessageText:
  3480. //
  3481. //  No entries found in the playlist file.%0
  3482. //
  3483. #define NS_E_WMPCORE_LIST_ENTRY_NO_REF   _HRESULT_TYPEDEF_(0xC00D1098L)
  3484.  
  3485. //
  3486. // MessageId: NS_E_WMPCORE_MISNAMED_FILE
  3487. //
  3488. // MessageText:
  3489. //
  3490. //  Windows Media Player cannot play the file. The file is either corrupt or the Player does not support the format you are trying to play.%0
  3491. //
  3492. #define NS_E_WMPCORE_MISNAMED_FILE       _HRESULT_TYPEDEF_(0xC00D1099L)
  3493.  
  3494. //
  3495. // MessageId: NS_E_WMPCORE_CODEC_NOT_TRUSTED
  3496. //
  3497. // MessageText:
  3498. //
  3499. //  The codec downloaded for this media does not appear to be properly signed. Installation is not possible.%0
  3500. //
  3501. #define NS_E_WMPCORE_CODEC_NOT_TRUSTED   _HRESULT_TYPEDEF_(0xC00D109AL)
  3502.  
  3503. //
  3504. // MessageId: NS_E_WMPCORE_CODEC_NOT_FOUND
  3505. //
  3506. // MessageText:
  3507. //
  3508. //  Windows Media Player cannot play the file. One or more codecs required to play the file could not be found.%0
  3509. //
  3510. #define NS_E_WMPCORE_CODEC_NOT_FOUND     _HRESULT_TYPEDEF_(0xC00D109BL)
  3511.  
  3512. //
  3513. // MessageId: NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED
  3514. //
  3515. // MessageText:
  3516. //
  3517. //  Some of the codecs required by this media are not installed on your system. Since the option for automatic codec acquisition is disabled, no codecs will be downloaded.%0
  3518. //
  3519. #define NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED _HRESULT_TYPEDEF_(0xC00D109CL)
  3520.  
  3521. //
  3522. // MessageId: NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST
  3523. //
  3524. // MessageText:
  3525. //
  3526. //  Failed to download the playlist file.%0
  3527. //
  3528. #define NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST _HRESULT_TYPEDEF_(0xC00D109DL)
  3529.  
  3530. //
  3531. // MessageId: NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST
  3532. //
  3533. // MessageText:
  3534. //
  3535. //  Failed to build the playlist.%0
  3536. //
  3537. #define NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST _HRESULT_TYPEDEF_(0xC00D109EL)
  3538.  
  3539. //
  3540. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE
  3541. //
  3542. // MessageText:
  3543. //
  3544. //  Playlist has no alternates to switch into.%0
  3545. //
  3546. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE _HRESULT_TYPEDEF_(0xC00D109FL)
  3547.  
  3548. //
  3549. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED
  3550. //
  3551. // MessageText:
  3552. //
  3553. //  No more playlist alternates available to switch to.%0
  3554. //
  3555. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED _HRESULT_TYPEDEF_(0xC00D10A0L)
  3556.  
  3557. //
  3558. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND
  3559. //
  3560. // MessageText:
  3561. //
  3562. //  Could not find the name of the alternate playlist to switch into.%0
  3563. //
  3564. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10A1L)
  3565.  
  3566. //
  3567. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED
  3568. //
  3569. // MessageText:
  3570. //
  3571. //  Failed to switch to an alternate for this media.%0
  3572. //
  3573. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED _HRESULT_TYPEDEF_(0xC00D10A2L)
  3574.  
  3575. //
  3576. // MessageId: NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED
  3577. //
  3578. // MessageText:
  3579. //
  3580. //  Failed to initialize an alternate for the media.%0
  3581. //
  3582. #define NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED _HRESULT_TYPEDEF_(0xC00D10A3L)
  3583.  
  3584. //
  3585. // MessageId: NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY
  3586. //
  3587. // MessageText:
  3588. //
  3589. //  No URL specified for the roll over Refs in the playlist file.%0
  3590. //
  3591. #define NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY _HRESULT_TYPEDEF_(0xC00D10A4L)
  3592.  
  3593. //
  3594. // MessageId: NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME
  3595. //
  3596. // MessageText:
  3597. //
  3598. //  Encountered a playlist with no name.%0
  3599. //
  3600. #define NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME _HRESULT_TYPEDEF_(0xC00D10A5L)
  3601.  
  3602. //
  3603. // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT
  3604. //
  3605. // MessageText:
  3606. //
  3607. //  A required attribute in the event block of the playlist was not found.%0
  3608. //
  3609. #define NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT _HRESULT_TYPEDEF_(0xC00D10A6L)
  3610.  
  3611. //
  3612. // MessageId: NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY
  3613. //
  3614. // MessageText:
  3615. //
  3616. //  No items were found in the event block of the playlist.%0
  3617. //
  3618. #define NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY _HRESULT_TYPEDEF_(0xC00D10A7L)
  3619.  
  3620. //
  3621. // MessageId: NS_E_WMPCORE_PLAYLIST_STACK_EMPTY
  3622. //
  3623. // MessageText:
  3624. //
  3625. //  No playlist was found while returning from a nested playlist.%0
  3626. //
  3627. #define NS_E_WMPCORE_PLAYLIST_STACK_EMPTY _HRESULT_TYPEDEF_(0xC00D10A8L)
  3628.  
  3629. //
  3630. // MessageId: NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE
  3631. //
  3632. // MessageText:
  3633. //
  3634. //  The media item is not active currently.%0
  3635. //
  3636. #define NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE _HRESULT_TYPEDEF_(0xC00D10A9L)
  3637.  
  3638. //
  3639. // MessageId: NS_E_WMPCORE_USER_CANCEL
  3640. //
  3641. // MessageText:
  3642. //
  3643. //  Open was aborted by user.%0
  3644. //
  3645. #define NS_E_WMPCORE_USER_CANCEL         _HRESULT_TYPEDEF_(0xC00D10ABL)
  3646.  
  3647. //
  3648. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY
  3649. //
  3650. // MessageText:
  3651. //
  3652. //  No items were found inside the playlist repeat block.%0
  3653. //
  3654. #define NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY _HRESULT_TYPEDEF_(0xC00D10ACL)
  3655.  
  3656. //
  3657. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE
  3658. //
  3659. // MessageText:
  3660. //
  3661. //  Media object corresponding to start of a playlist repeat block was not found.%0
  3662. //
  3663. #define NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE _HRESULT_TYPEDEF_(0xC00D10ADL)
  3664.  
  3665. //
  3666. // MessageId: NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE
  3667. //
  3668. // MessageText:
  3669. //
  3670. //  Media object corresponding to the end of a playlist repeat block was not found.%0
  3671. //
  3672. #define NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE _HRESULT_TYPEDEF_(0xC00D10AEL)
  3673.  
  3674. //
  3675. // MessageId: NS_E_WMPCORE_INVALID_PLAYLIST_URL
  3676. //
  3677. // MessageText:
  3678. //
  3679. //  Playlist URL supplied to the playlist manager is invalid.%0
  3680. //
  3681. #define NS_E_WMPCORE_INVALID_PLAYLIST_URL _HRESULT_TYPEDEF_(0xC00D10AFL)
  3682.  
  3683. //
  3684. // MessageId: NS_E_WMPCORE_MISMATCHED_RUNTIME
  3685. //
  3686. // MessageText:
  3687. //
  3688. //  Windows Media Player cannot play the file because it is corrupted.%0
  3689. //
  3690. #define NS_E_WMPCORE_MISMATCHED_RUNTIME  _HRESULT_TYPEDEF_(0xC00D10B0L)
  3691.  
  3692. //
  3693. // MessageId: NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS
  3694. //
  3695. // MessageText:
  3696. //
  3697. //  Windows Media Player cannot import the playlist to Media Library because the playlist is empty.%0
  3698. //
  3699. #define NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS _HRESULT_TYPEDEF_(0xC00D10B1L)
  3700.  
  3701. //
  3702. // MessageId: NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION
  3703. //
  3704. // MessageText:
  3705. //
  3706. //  An error has occurred that could prevent the changing of the video contrast on this media.%0
  3707. //
  3708. #define NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION _HRESULT_TYPEDEF_(0xC00D10B2L)
  3709.  
  3710. //
  3711. // MessageId: NS_E_WMPCORE_MEDIA_UNAVAILABLE
  3712. //
  3713. // MessageText:
  3714. //
  3715. //  Windows Media Player cannot play this file. Connect to the Internet or insert the removable media on which the file is located, and then try to play the file again.%0
  3716. //
  3717. #define NS_E_WMPCORE_MEDIA_UNAVAILABLE   _HRESULT_TYPEDEF_(0xC00D10B3L)
  3718.  
  3719. //
  3720. // MessageId: NS_E_WMPCORE_WMX_ENTRYREF_NO_REF
  3721. //
  3722. // MessageText:
  3723. //
  3724. //  The playlist contains an ENTRYREF for which no href was parsed. Check the syntax of playlist file.%0
  3725. //
  3726. #define NS_E_WMPCORE_WMX_ENTRYREF_NO_REF _HRESULT_TYPEDEF_(0xC00D10B4L)
  3727.  
  3728. //
  3729. // MessageId: NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST
  3730. //
  3731. // MessageText:
  3732. //
  3733. //  Windows Media Player cannot play any items in this playlist. For additional information, right-click an item that cannot be played, and then click Error Details.%0
  3734. //
  3735. #define NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST _HRESULT_TYPEDEF_(0xC00D10B5L)
  3736.  
  3737. //
  3738. // MessageId: NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS
  3739. //
  3740. // MessageText:
  3741. //
  3742. //  Windows Media Player cannot play some or all of the playlist items.%0
  3743. //
  3744. #define NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS _HRESULT_TYPEDEF_(0xC00D10B6L)
  3745.  
  3746. //
  3747. // MessageId: NS_E_WMPCORE_BUSY
  3748. //
  3749. // MessageText:
  3750. //
  3751. //  Windows Media Player cannot play the file at this time. Try again later.%0
  3752. //
  3753. #define NS_E_WMPCORE_BUSY                _HRESULT_TYPEDEF_(0xC00D10B7L)
  3754.  
  3755. //
  3756. // MessageId: NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE
  3757. //
  3758. // MessageText:
  3759. //
  3760. //  There is no child playlist available for this media item at this time.%0
  3761. //
  3762. #define NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D10B8L)
  3763.  
  3764. //
  3765. // MessageId: NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST
  3766. //
  3767. // MessageText:
  3768. //
  3769. //  There is no child playlist for this media item.%0
  3770. //
  3771. #define NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST _HRESULT_TYPEDEF_(0xC00D10B9L)
  3772.  
  3773. //
  3774. // MessageId: NS_E_WMPCORE_FILE_NOT_FOUND
  3775. //
  3776. // MessageText:
  3777. //
  3778. //  Windows Media Player cannot play one or more files. Right-click the file, and then click Error Details to view information about the error.%0
  3779. //
  3780. #define NS_E_WMPCORE_FILE_NOT_FOUND      _HRESULT_TYPEDEF_(0xC00D10BAL)
  3781.  
  3782. //
  3783. // MessageId: NS_E_WMPCORE_TEMP_FILE_NOT_FOUND
  3784. //
  3785. // MessageText:
  3786. //
  3787. //  The temporary file was not found.%0
  3788. //
  3789. #define NS_E_WMPCORE_TEMP_FILE_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10BBL)
  3790.  
  3791. //
  3792. // MessageId: NS_E_WMDM_REVOKED
  3793. //
  3794. // MessageText:
  3795. //
  3796. //  Windows Media Player cannot transfer media to the portable device without an update.  Please click More Information to find out how to update your device.%0
  3797. //
  3798. #define NS_E_WMDM_REVOKED                _HRESULT_TYPEDEF_(0xC00D10BCL)
  3799.  
  3800. //
  3801. // MessageId: NS_E_DDRAW_GENERIC
  3802. //
  3803. // MessageText:
  3804. //
  3805. //  Windows Media Player cannot play the video stream because of a problem with your video card.%0
  3806. //
  3807. #define NS_E_DDRAW_GENERIC               _HRESULT_TYPEDEF_(0xC00D10BDL)
  3808.  
  3809. //
  3810. // MessageId: NS_E_DISPLAY_MODE_CHANGE_FAILED
  3811. //
  3812. // MessageText:
  3813. //
  3814. //  Windows Media Player failed to change the screen mode for fullscreen video playback.%0
  3815. //
  3816. #define NS_E_DISPLAY_MODE_CHANGE_FAILED  _HRESULT_TYPEDEF_(0xC00D10BEL)
  3817.  
  3818. //
  3819. // MessageId: NS_E_PLAYLIST_CONTAINS_ERRORS
  3820. //
  3821. // MessageText:
  3822. //
  3823. //  One or more items in the playlist cannot be played. For more details, right-click an item in the playlist, and then click Error Details.%0
  3824. //
  3825. #define NS_E_PLAYLIST_CONTAINS_ERRORS    _HRESULT_TYPEDEF_(0xC00D10BFL)
  3826.  
  3827. //
  3828. // MessageId: NS_E_CHANGING_PROXY_NAME
  3829. //
  3830. // MessageText:
  3831. //
  3832. //  Can't change proxy name if the proxy setting is not set to custom.%0
  3833. //
  3834. #define NS_E_CHANGING_PROXY_NAME         _HRESULT_TYPEDEF_(0xC00D10C0L)
  3835.  
  3836. //
  3837. // MessageId: NS_E_CHANGING_PROXY_PORT
  3838. //
  3839. // MessageText:
  3840. //
  3841. //  Can't change proxy port if the proxy setting is not set to custom.%0
  3842. //
  3843. #define NS_E_CHANGING_PROXY_PORT         _HRESULT_TYPEDEF_(0xC00D10C1L)
  3844.  
  3845. //
  3846. // MessageId: NS_E_CHANGING_PROXY_EXCEPTIONLIST
  3847. //
  3848. // MessageText:
  3849. //
  3850. //  Can't change proxy exception list if the proxy setting is not set to custom.%0
  3851. //
  3852. #define NS_E_CHANGING_PROXY_EXCEPTIONLIST _HRESULT_TYPEDEF_(0xC00D10C2L)
  3853.  
  3854. //
  3855. // MessageId: NS_E_CHANGING_PROXYBYPASS
  3856. //
  3857. // MessageText:
  3858. //
  3859. //  Can't change proxy bypass flag if the proxy setting is not set to custom.%0
  3860. //
  3861. #define NS_E_CHANGING_PROXYBYPASS        _HRESULT_TYPEDEF_(0xC00D10C3L)
  3862.  
  3863. //
  3864. // MessageId: NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND
  3865. //
  3866. // MessageText:
  3867. //
  3868. //  Can't find specified protocol.%0
  3869. //
  3870. #define NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D10C4L)
  3871.  
  3872. //
  3873. // MessageId: NS_E_GRAPH_NOAUDIOLANGUAGE
  3874. //
  3875. // MessageText:
  3876. //
  3877. //  Can't change language settings.  Either the graph has no audio, or the audio only supports one language.%0
  3878. //
  3879. #define NS_E_GRAPH_NOAUDIOLANGUAGE       _HRESULT_TYPEDEF_(0xC00D10C5L)
  3880.  
  3881. //
  3882. // MessageId: NS_E_GRAPH_NOAUDIOLANGUAGESELECTED
  3883. //
  3884. // MessageText:
  3885. //
  3886. //  The graph has no audio language selected.%0
  3887. //
  3888. #define NS_E_GRAPH_NOAUDIOLANGUAGESELECTED _HRESULT_TYPEDEF_(0xC00D10C6L)
  3889.  
  3890. //
  3891. // MessageId: NS_E_CORECD_NOTAMEDIACD
  3892. //
  3893. // MessageText:
  3894. //
  3895. //  This is not a media CD.%0
  3896. //
  3897. #define NS_E_CORECD_NOTAMEDIACD          _HRESULT_TYPEDEF_(0xC00D10C7L)
  3898.  
  3899. //
  3900. // MessageId: NS_E_WMPCORE_MEDIA_URL_TOO_LONG
  3901. //
  3902. // MessageText:
  3903. //
  3904. //  Windows Media Player cannot play this file because the URL is too long.%0
  3905. //
  3906. #define NS_E_WMPCORE_MEDIA_URL_TOO_LONG  _HRESULT_TYPEDEF_(0xC00D10C8L)
  3907.  
  3908. //
  3909. // MessageId: NS_E_WMPFLASH_CANT_FIND_COM_SERVER
  3910. //
  3911. // MessageText:
  3912. //
  3913. //  Windows Media Player needs the Macromedia Flash Player to play this content. Windows Media Player was not able to detect the Flash player on your system. To play the selected item, you must install the Macromedia Flash Player from the Macromedia Web site, and then try to play the item again.%0
  3914. //
  3915. #define NS_E_WMPFLASH_CANT_FIND_COM_SERVER _HRESULT_TYPEDEF_(0xC00D10C9L)
  3916.  
  3917. //
  3918. // MessageId: NS_E_WMPFLASH_INCOMPATIBLEVERSION
  3919. //
  3920. // MessageText:
  3921. //
  3922. //  To play the selected item, you must install an updated version of the Macromedia Flash Player from the Macromedia Web site, and then try to play the item again.%0
  3923. //
  3924. #define NS_E_WMPFLASH_INCOMPATIBLEVERSION _HRESULT_TYPEDEF_(0xC00D10CAL)
  3925.  
  3926. //
  3927. // MessageId: NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS
  3928. //
  3929. // MessageText:
  3930. //
  3931. //  The use of ActiveX controls has been turned off in Internet Explorer. As a result Windows Media Player will not be able to playback this content.%0
  3932. //
  3933. #define NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS _HRESULT_TYPEDEF_(0xC00D10CBL)
  3934.  
  3935. //
  3936. // MessageId: NS_E_NEED_CORE_REFERENCE
  3937. //
  3938. // MessageText:
  3939. //
  3940. //  The use of this method requires an existing reference to the Player object.%0
  3941. //
  3942. #define NS_E_NEED_CORE_REFERENCE         _HRESULT_TYPEDEF_(0xC00D10CCL)
  3943.  
  3944. //
  3945. // MessageId: NS_E_MEDIACD_READ_ERROR
  3946. //
  3947. // MessageText:
  3948. //
  3949. //  There was an error reading from the CD-ROM.%0
  3950. //
  3951. #define NS_E_MEDIACD_READ_ERROR          _HRESULT_TYPEDEF_(0xC00D10CDL)
  3952.  
  3953. //
  3954. // MessageId: NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS
  3955. //
  3956. // MessageText:
  3957. //
  3958. //  Internet Explorer is set to disallow ActiveX controls.%0
  3959. //
  3960. #define NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS _HRESULT_TYPEDEF_(0xC00D10CEL)
  3961.  
  3962. //
  3963. // MessageId: NS_E_FLASH_PLAYBACK_NOT_ALLOWED
  3964. //
  3965. // MessageText:
  3966. //
  3967. //  Flash playback has been turned off in Windows Media Player.%0
  3968. //
  3969. #define NS_E_FLASH_PLAYBACK_NOT_ALLOWED  _HRESULT_TYPEDEF_(0xC00D10CFL)
  3970.  
  3971. //
  3972. // MessageId: NS_E_UNABLE_TO_CREATE_RIP_LOCATION
  3973. //
  3974. // MessageText:
  3975. //
  3976. //  Media Player was unable to create a valid location to copy the CD track.%0
  3977. //
  3978. #define NS_E_UNABLE_TO_CREATE_RIP_LOCATION _HRESULT_TYPEDEF_(0xC00D10D0L)
  3979.  
  3980. //
  3981. // MessageId: NS_E_WMPCORE_SOME_CODECS_MISSING
  3982. //
  3983. // MessageText:
  3984. //
  3985. //  One or more codecs required to open this content could not be found.%0
  3986. //
  3987. #define NS_E_WMPCORE_SOME_CODECS_MISSING _HRESULT_TYPEDEF_(0xC00D10D1L)
  3988.  
  3989. //
  3990. // WMP Core  Success codes
  3991. //
  3992. //
  3993. // MessageId: NS_S_WMPCORE_PLAYLISTCLEARABORT
  3994. //
  3995. // MessageText:
  3996. //
  3997. //  Failed to clear playlist because it was aborted by user.%0
  3998. //
  3999. #define NS_S_WMPCORE_PLAYLISTCLEARABORT  _HRESULT_TYPEDEF_(0x000D10FEL)
  4000.  
  4001. //
  4002. // MessageId: NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT
  4003. //
  4004. // MessageText:
  4005. //
  4006. //  Failed to remove item in the playlist since it was aborted by user.%0
  4007. //
  4008. #define NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT _HRESULT_TYPEDEF_(0x000D10FFL)
  4009.  
  4010. //
  4011. // MessageId: NS_S_WMPCORE_PLAYLIST_CREATION_PENDING
  4012. //
  4013. // MessageText:
  4014. //
  4015. //  Playlist is being generated asynchronously.%0
  4016. //
  4017. #define NS_S_WMPCORE_PLAYLIST_CREATION_PENDING _HRESULT_TYPEDEF_(0x000D1102L)
  4018.  
  4019. //
  4020. // MessageId: NS_S_WMPCORE_MEDIA_VALIDATION_PENDING
  4021. //
  4022. // MessageText:
  4023. //
  4024. //  Validation of the media is pending...%0
  4025. //
  4026. #define NS_S_WMPCORE_MEDIA_VALIDATION_PENDING _HRESULT_TYPEDEF_(0x000D1103L)
  4027.  
  4028. //
  4029. // MessageId: NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED
  4030. //
  4031. // MessageText:
  4032. //
  4033. //  Encountered more than one Repeat block during ASX processing.%0
  4034. //
  4035. #define NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED _HRESULT_TYPEDEF_(0x000D1104L)
  4036.  
  4037. //
  4038. // MessageId: NS_S_WMPCORE_COMMAND_NOT_AVAILABLE
  4039. //
  4040. // MessageText:
  4041. //
  4042. //  Current state of WMP disallows calling this method or property.%0
  4043. //
  4044. #define NS_S_WMPCORE_COMMAND_NOT_AVAILABLE _HRESULT_TYPEDEF_(0x000D1105L)
  4045.  
  4046. //
  4047. // MessageId: NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED
  4048. //
  4049. // MessageText:
  4050. //
  4051. //  Name for the playlist has been auto generated.%0
  4052. //
  4053. #define NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED _HRESULT_TYPEDEF_(0x000D1106L)
  4054.  
  4055. //
  4056. // MessageId: NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS
  4057. //
  4058. // MessageText:
  4059. //
  4060. //  The imported playlist does not contain all items from the original.%0
  4061. //
  4062. #define NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS _HRESULT_TYPEDEF_(0x000D1107L)
  4063.  
  4064. //
  4065. // MessageId: NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA
  4066. //
  4067. // MessageText:
  4068. //
  4069. //  The M3U playlist has been ignored because it only contains one item.%0
  4070. //
  4071. #define NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA _HRESULT_TYPEDEF_(0x000D1108L)
  4072.  
  4073. //
  4074. // MessageId: NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING
  4075. //
  4076. // MessageText:
  4077. //
  4078. //  The open for the child playlist associated with this media is pending.%0
  4079. //
  4080. #define NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING _HRESULT_TYPEDEF_(0x000D1109L)
  4081.  
  4082. //
  4083. // MessageId: NS_S_WMPCORE_MORE_NODES_AVAIABLE
  4084. //
  4085. // MessageText:
  4086. //
  4087. //  More nodes support the interface requested, but the array for returning them is full.%0
  4088. //
  4089. #define NS_S_WMPCORE_MORE_NODES_AVAIABLE _HRESULT_TYPEDEF_(0x000D110AL)
  4090.  
  4091. //
  4092. // WMP Internet Manager error codes
  4093. //
  4094. //
  4095. // MessageId: NS_E_WMPIM_USEROFFLINE
  4096. //
  4097. // MessageText:
  4098. //
  4099. //  Windows Media Player has detected that you are not connected to the Internet. Connect to the Internet, and then try again.%0
  4100. //
  4101. #define NS_E_WMPIM_USEROFFLINE           _HRESULT_TYPEDEF_(0xC00D1126L)
  4102.  
  4103. //
  4104. // MessageId: NS_E_WMPIM_USERCANCELED
  4105. //
  4106. // MessageText:
  4107. //
  4108. //  User cancelled attempt to connect to the Internet.%0
  4109. //
  4110. #define NS_E_WMPIM_USERCANCELED          _HRESULT_TYPEDEF_(0xC00D1127L)
  4111.  
  4112. //
  4113. // MessageId: NS_E_WMPIM_DIALUPFAILED
  4114. //
  4115. // MessageText:
  4116. //
  4117. //  Attempt to dial connection to the Internet failed.%0
  4118. //
  4119. #define NS_E_WMPIM_DIALUPFAILED          _HRESULT_TYPEDEF_(0xC00D1128L)
  4120.  
  4121. //
  4122. // MessageId: NS_E_WINSOCK_ERROR_STRING
  4123. //
  4124. // MessageText:
  4125. //
  4126. //  Windows Media Player has encountered an unknown network error.%0
  4127. //
  4128. #define NS_E_WINSOCK_ERROR_STRING        _HRESULT_TYPEDEF_(0xC00D1129L)
  4129.  
  4130. //
  4131. // WMP Backup and restore error and success codes
  4132. //
  4133. //
  4134. // MessageId: NS_E_WMPBR_NOLISTENER
  4135. //
  4136. // MessageText:
  4137. //
  4138. //  No window is currently listening to Backup and Restore events.%0
  4139. //
  4140. #define NS_E_WMPBR_NOLISTENER            _HRESULT_TYPEDEF_(0xC00D1130L)
  4141.  
  4142. //
  4143. // MessageId: NS_E_WMPBR_BACKUPCANCEL
  4144. //
  4145. // MessageText:
  4146. //
  4147. //  Backup of your licenses has been cancelled.  Please try again to ensure license backup.%0
  4148. //
  4149. #define NS_E_WMPBR_BACKUPCANCEL          _HRESULT_TYPEDEF_(0xC00D1131L)
  4150.  
  4151. //
  4152. // MessageId: NS_E_WMPBR_RESTORECANCEL
  4153. //
  4154. // MessageText:
  4155. //
  4156. //  The licenses were not restored because the restoration was cancelled.%0
  4157. //
  4158. #define NS_E_WMPBR_RESTORECANCEL         _HRESULT_TYPEDEF_(0xC00D1132L)
  4159.  
  4160. //
  4161. // MessageId: NS_E_WMPBR_ERRORWITHURL
  4162. //
  4163. // MessageText:
  4164. //
  4165. //  An error occurred during the backup or restore operation that requires a web page be displayed to the user.%0
  4166. //
  4167. #define NS_E_WMPBR_ERRORWITHURL          _HRESULT_TYPEDEF_(0xC00D1133L)
  4168.  
  4169. //
  4170. // MessageId: NS_E_WMPBR_NAMECOLLISION
  4171. //
  4172. // MessageText:
  4173. //
  4174. //  The licenses were not backed up because the backup was cancelled.%0
  4175. //
  4176. #define NS_E_WMPBR_NAMECOLLISION         _HRESULT_TYPEDEF_(0xC00D1134L)
  4177.  
  4178. //
  4179. // MessageId: NS_S_WMPBR_SUCCESS
  4180. //
  4181. // MessageText:
  4182. //
  4183. //  Backup or Restore successful!.%0
  4184. //
  4185. #define NS_S_WMPBR_SUCCESS               _HRESULT_TYPEDEF_(0x000D1135L)
  4186.  
  4187. //
  4188. // MessageId: NS_S_WMPBR_PARTIALSUCCESS
  4189. //
  4190. // MessageText:
  4191. //
  4192. //  Transfer complete with limitations.%0
  4193. //
  4194. #define NS_S_WMPBR_PARTIALSUCCESS        _HRESULT_TYPEDEF_(0x000D1136L)
  4195.  
  4196. //
  4197. // MessageId: NS_E_WMPBR_DRIVE_INVALID
  4198. //
  4199. // MessageText:
  4200. //
  4201. //  The location specified for restoring licenses is not valid. Choose another location, and then try again.%0
  4202. //
  4203. #define NS_E_WMPBR_DRIVE_INVALID         _HRESULT_TYPEDEF_(0xC00D1137L)
  4204.  
  4205. //
  4206. // WMP Effects Success codes
  4207. //
  4208. //
  4209. // MessageId: NS_S_WMPEFFECT_TRANSPARENT
  4210. //
  4211. // MessageText:
  4212. //
  4213. //  Request to the effects control to change transparency status to transparent.%0
  4214. //
  4215. #define NS_S_WMPEFFECT_TRANSPARENT       _HRESULT_TYPEDEF_(0x000D1144L)
  4216.  
  4217. //
  4218. // MessageId: NS_S_WMPEFFECT_OPAQUE
  4219. //
  4220. // MessageText:
  4221. //
  4222. //  Request to the effects control to change transparency status to opaque.%0
  4223. //
  4224. #define NS_S_WMPEFFECT_OPAQUE            _HRESULT_TYPEDEF_(0x000D1145L)
  4225.  
  4226. //
  4227. // WMP Application Success codes
  4228. //
  4229. //
  4230. // MessageId: NS_S_OPERATION_PENDING
  4231. //
  4232. // MessageText:
  4233. //
  4234. //  The requested application pane is performing an operation and will not be relased.%0
  4235. //
  4236. #define NS_S_OPERATION_PENDING           _HRESULT_TYPEDEF_(0x000D114EL)
  4237.  
  4238. //
  4239. // WMP DVD Error Codes
  4240. //
  4241. //
  4242. // MessageId: NS_E_DVD_NO_SUBPICTURE_STREAM
  4243. //
  4244. // MessageText:
  4245. //
  4246. //  Windows Media Player cannot display subtitles or highlights in menus. Reinstall the DVD decoder or contact your device manufacturer to obtain an updated decoder, and then try again.%0
  4247. //
  4248. #define NS_E_DVD_NO_SUBPICTURE_STREAM    _HRESULT_TYPEDEF_(0xC00D1162L)
  4249.  
  4250. //
  4251. // MessageId: NS_E_DVD_COPY_PROTECT
  4252. //
  4253. // MessageText:
  4254. //
  4255. //  Windows Media Player cannot play this DVD because a problem occurred with digital copyright protection.%0
  4256. //
  4257. #define NS_E_DVD_COPY_PROTECT            _HRESULT_TYPEDEF_(0xC00D1163L)
  4258.  
  4259. //
  4260. // MessageId: NS_E_DVD_AUTHORING_PROBLEM
  4261. //
  4262. // MessageText:
  4263. //
  4264. //  Windows Media Player cannot play this DVD because the disc is incompatible with the Player.%0
  4265. //
  4266. #define NS_E_DVD_AUTHORING_PROBLEM       _HRESULT_TYPEDEF_(0xC00D1164L)
  4267.  
  4268. //
  4269. // MessageId: NS_E_DVD_INVALID_DISC_REGION
  4270. //
  4271. // MessageText:
  4272. //
  4273. //  Windows Media Player cannot play this DVD because the disc prohibits playback in your region of the world. You must obtain a disc that is intended for your geographic region.%0
  4274. //
  4275. #define NS_E_DVD_INVALID_DISC_REGION     _HRESULT_TYPEDEF_(0xC00D1165L)
  4276.  
  4277. //
  4278. // MessageId: NS_E_DVD_COMPATIBLE_VIDEO_CARD
  4279. //
  4280. // MessageText:
  4281. //
  4282. //  Windows Media Player cannot play this DVD because your video card does not support DVD playback.%0
  4283. //
  4284. #define NS_E_DVD_COMPATIBLE_VIDEO_CARD   _HRESULT_TYPEDEF_(0xC00D1166L)
  4285.  
  4286. //
  4287. // MessageId: NS_E_DVD_MACROVISION
  4288. //
  4289. // MessageText:
  4290. //
  4291. //  Windows Media Player cannot play this DVD because a problem occurred with copyright protection.%0
  4292. //
  4293. #define NS_E_DVD_MACROVISION             _HRESULT_TYPEDEF_(0xC00D1167L)
  4294.  
  4295. //
  4296. // MessageId: NS_E_DVD_SYSTEM_DECODER_REGION
  4297. //
  4298. // MessageText:
  4299. //
  4300. //  Windows Media Player cannot play this DVD because the region assigned to your DVD drive does not match the region assigned to your DVD decoder.%0
  4301. //
  4302. #define NS_E_DVD_SYSTEM_DECODER_REGION   _HRESULT_TYPEDEF_(0xC00D1168L)
  4303.  
  4304. //
  4305. // MessageId: NS_E_DVD_DISC_DECODER_REGION
  4306. //
  4307. // MessageText:
  4308. //
  4309. //  Windows Media Player cannot play this DVD because the disc prohibits playback in your region of the world. To play the disc by using the Player, you must obtain a disc that is intended for your geographic region.%0
  4310. //
  4311. #define NS_E_DVD_DISC_DECODER_REGION     _HRESULT_TYPEDEF_(0xC00D1169L)
  4312.  
  4313. //
  4314. // MessageId: NS_E_DVD_NO_VIDEO_STREAM
  4315. //
  4316. // MessageText:
  4317. //
  4318. //  Windows Media Player is currently unable to play DVD video. Try decreasing the number of colors displayed on your monitor or decreasing the screen resolution. For additional solutions, click More Information to access the DVD Troubleshooter.%0
  4319. //
  4320. #define NS_E_DVD_NO_VIDEO_STREAM         _HRESULT_TYPEDEF_(0xC00D116AL)
  4321.  
  4322. //
  4323. // MessageId: NS_E_DVD_NO_AUDIO_STREAM
  4324. //
  4325. // MessageText:
  4326. //
  4327. //  Windows Media Player cannot play DVD audio. Verify that your sound card is set up correctly, and then try again.%0
  4328. //
  4329. #define NS_E_DVD_NO_AUDIO_STREAM         _HRESULT_TYPEDEF_(0xC00D116BL)
  4330.  
  4331. //
  4332. // MessageId: NS_E_DVD_GRAPH_BUILDING
  4333. //
  4334. // MessageText:
  4335. //
  4336. //  Windows Media Player cannot play DVD video. Close any open files and quit any other running programs, and then try again. If the problem continues, restart your computer.%0
  4337. //
  4338. #define NS_E_DVD_GRAPH_BUILDING          _HRESULT_TYPEDEF_(0xC00D116CL)
  4339.  
  4340. //
  4341. // MessageId: NS_E_DVD_NO_DECODER
  4342. //
  4343. // MessageText:
  4344. //
  4345. //  Windows Media Player cannot play this DVD because a compatible DVD decoder is not installed on your computer.%0
  4346. //
  4347. #define NS_E_DVD_NO_DECODER              _HRESULT_TYPEDEF_(0xC00D116DL)
  4348.  
  4349. //
  4350. // MessageId: NS_E_DVD_PARENTAL
  4351. //
  4352. // MessageText:
  4353. //
  4354. //  Windows Media Player cannot play this DVD segment because the segment has a parental rating higher than the rating you are authorized to view.%0
  4355. //
  4356. #define NS_E_DVD_PARENTAL                _HRESULT_TYPEDEF_(0xC00D116EL)
  4357.  
  4358. //
  4359. // MessageId: NS_E_DVD_CANNOT_JUMP
  4360. //
  4361. // MessageText:
  4362. //
  4363. //  Windows Media Player cannot skip to the requested location in the DVD at this time.%0
  4364. //
  4365. #define NS_E_DVD_CANNOT_JUMP             _HRESULT_TYPEDEF_(0xC00D116FL)
  4366.  
  4367. //
  4368. // MessageId: NS_E_DVD_DEVICE_CONTENTION
  4369. //
  4370. // MessageText:
  4371. //
  4372. //  Windows Media Player cannot play this DVD because it is currently in use by another program. Quit the other program that is using the DVD, and then try to play it again.%0
  4373. //
  4374. #define NS_E_DVD_DEVICE_CONTENTION       _HRESULT_TYPEDEF_(0xC00D1170L)
  4375.  
  4376. //
  4377. // MessageId: NS_E_DVD_NO_VIDEO_MEMORY
  4378. //
  4379. // MessageText:
  4380. //
  4381. //  Windows Media Player cannot play DVD video. Double-click Display in Control Panel to lower your screen resolution and color quality settings.%0
  4382. //
  4383. #define NS_E_DVD_NO_VIDEO_MEMORY         _HRESULT_TYPEDEF_(0xC00D1171L)
  4384.  
  4385. //
  4386. // MessageId: NS_E_DVD_CANNOT_COPY_PROTECTED
  4387. //
  4388. // MessageText:
  4389. //
  4390. //  Windows Media Player cannot copy this DVD because it is copy protected.%0
  4391. //
  4392. #define NS_E_DVD_CANNOT_COPY_PROTECTED   _HRESULT_TYPEDEF_(0xC00D1172L)
  4393.  
  4394. //
  4395. // MessageId: NS_E_DVD_REQUIRED_PROPERTY_NOT_SET
  4396. //
  4397. // MessageText:
  4398. //
  4399. //  One of more of the required properties has not been set.%0
  4400. //
  4401. #define NS_E_DVD_REQUIRED_PROPERTY_NOT_SET _HRESULT_TYPEDEF_(0xC00D1173L)
  4402.  
  4403. //
  4404. // MessageId: NS_E_DVD_INVALID_TITLE_CHAPTER
  4405. //
  4406. // MessageText:
  4407. //
  4408. //  The specified title and/or chapter number does not exist on this DVD.%0
  4409. //
  4410. #define NS_E_DVD_INVALID_TITLE_CHAPTER   _HRESULT_TYPEDEF_(0xC00D1174L)
  4411.  
  4412. //
  4413. // WMP PDA Error codes
  4414. //
  4415. //
  4416. // MessageId: NS_E_NO_CD_BURNER
  4417. //
  4418. // MessageText:
  4419. //
  4420. //  A CD recorder (burner) was not detected. Connect a CD recorder, and try copying again.%0
  4421. //
  4422. #define NS_E_NO_CD_BURNER                _HRESULT_TYPEDEF_(0xC00D1176L)
  4423.  
  4424. //
  4425. // MessageId: NS_E_DEVICE_IS_NOT_READY
  4426. //
  4427. // MessageText:
  4428. //
  4429. //  Windows Media Player does not detect any storage media in the selected device. Insert media into the device.%0
  4430. //
  4431. #define NS_E_DEVICE_IS_NOT_READY         _HRESULT_TYPEDEF_(0xC00D1177L)
  4432.  
  4433. //
  4434. // MessageId: NS_E_PDA_UNSUPPORTED_FORMAT
  4435. //
  4436. // MessageText:
  4437. //
  4438. //  Windows Media Player cannot play the specified file. Your portable device does not support the specified format.%0
  4439. //
  4440. #define NS_E_PDA_UNSUPPORTED_FORMAT      _HRESULT_TYPEDEF_(0xC00D1178L)
  4441.  
  4442. //
  4443. // MessageId: NS_E_NO_PDA
  4444. //
  4445. // MessageText:
  4446. //
  4447. //  Windows Media Player cannot detect a connected portable device. Connect your portable device, and try again.%0
  4448. //
  4449. #define NS_E_NO_PDA                      _HRESULT_TYPEDEF_(0xC00D1179L)
  4450.  
  4451. //
  4452. // MessageId: NS_E_PDA_UNSPECIFIED_ERROR
  4453. //
  4454. // MessageText:
  4455. //
  4456. //  Windows Media Player has encountered an error on the portable device.%0
  4457. //
  4458. #define NS_E_PDA_UNSPECIFIED_ERROR       _HRESULT_TYPEDEF_(0xC00D117AL)
  4459.  
  4460. //
  4461. // MessageId: NS_E_MEMSTORAGE_BAD_DATA
  4462. //
  4463. // MessageText:
  4464. //
  4465. //  Windows Media Player encountered an internal error in accessing a memory-based storage during a CD burning task.%0
  4466. //
  4467. #define NS_E_MEMSTORAGE_BAD_DATA         _HRESULT_TYPEDEF_(0xC00D117BL)
  4468.  
  4469. //
  4470. // MessageId: NS_E_PDA_FAIL_SELECT_DEVICE
  4471. //
  4472. // MessageText:
  4473. //
  4474. //  Windows Media Player encountered an internal error when selecting a PDA or CD device.%0
  4475. //
  4476. #define NS_E_PDA_FAIL_SELECT_DEVICE      _HRESULT_TYPEDEF_(0xC00D117CL)
  4477.  
  4478. //
  4479. // MessageId: NS_E_PDA_FAIL_READ_WAVE_FILE
  4480. //
  4481. // MessageText:
  4482. //
  4483. //  Windows Media Player failed to open or read data from a wave file.%0
  4484. //
  4485. #define NS_E_PDA_FAIL_READ_WAVE_FILE     _HRESULT_TYPEDEF_(0xC00D117DL)
  4486.  
  4487. //
  4488. // MessageId: NS_E_IMAPI_LOSSOFSTREAMING
  4489. //
  4490. // MessageText:
  4491. //
  4492. //  Windows Media Player did not copy all the selected items. The Player has reduced the recording speed of your CD drive to solve the problem. To copy all the selected items, insert a blank CD in the drive, and try again.%0
  4493. //
  4494. #define NS_E_IMAPI_LOSSOFSTREAMING       _HRESULT_TYPEDEF_(0xC00D117EL)
  4495.  
  4496. //
  4497. // MessageId: NS_E_PDA_DEVICE_FULL
  4498. //
  4499. // MessageText:
  4500. //
  4501. //  There is not enough storage space on the portable device to complete this operation. Delete some unneeded files on the portable device, and then try again.%0
  4502. //
  4503. #define NS_E_PDA_DEVICE_FULL             _HRESULT_TYPEDEF_(0xC00D117FL)
  4504.  
  4505. //
  4506. // MessageId: NS_E_FAIL_LAUNCH_ROXIO_PLUGIN
  4507. //
  4508. // MessageText:
  4509. //
  4510. //  Windows Media Player cannot copy the files to the CD. Verify that a CD-R or CD-RW drive is connected to your computer, and then try again. If the problem continues, reinstall the Player.%0
  4511. //
  4512. #define NS_E_FAIL_LAUNCH_ROXIO_PLUGIN    _HRESULT_TYPEDEF_(0xC00D1180L)
  4513.  
  4514. //
  4515. // MessageId: NS_E_PDA_DEVICE_FULL_IN_SESSION
  4516. //
  4517. // MessageText:
  4518. //
  4519. //  Windows Media Player failed to copy some files to device because the device is out of space.%0
  4520. //
  4521. #define NS_E_PDA_DEVICE_FULL_IN_SESSION  _HRESULT_TYPEDEF_(0xC00D1181L)
  4522.  
  4523. //
  4524. // MessageId: NS_E_IMAPI_MEDIUM_INVALIDTYPE
  4525. //
  4526. // MessageText:
  4527. //
  4528. //  The medium in the drive is invalid. Please insert a blank CD-R or a CD-RW into the drive, and then try again.%0
  4529. //
  4530. #define NS_E_IMAPI_MEDIUM_INVALIDTYPE    _HRESULT_TYPEDEF_(0xC00D1182L)
  4531.  
  4532. //
  4533. // General Remapped Error codes in WMP
  4534. //
  4535. //
  4536. // MessageId: NS_E_WMP_PROTOCOL_PROBLEM
  4537. //
  4538. // MessageText:
  4539. //
  4540. //  Windows Media Player could not open the specified URL. Be sure Windows Media Player is configured to use all available protocols, and then try again.%0
  4541. //
  4542. #define NS_E_WMP_PROTOCOL_PROBLEM        _HRESULT_TYPEDEF_(0xC00D1194L)
  4543.  
  4544. //
  4545. // MessageId: NS_E_WMP_NO_DISK_SPACE
  4546. //
  4547. // MessageText:
  4548. //
  4549. //  Windows Media Player cannot open the file because there is not enough disk space on your computer. Delete some unneeded files on your hard disk, and then try again.%0
  4550. //
  4551. #define NS_E_WMP_NO_DISK_SPACE           _HRESULT_TYPEDEF_(0xC00D1195L)
  4552.  
  4553. //
  4554. // MessageId: NS_E_WMP_LOGON_FAILURE
  4555. //
  4556. // MessageText:
  4557. //
  4558. //  Windows Media Player cannot copy or play the file because the server denied access to it. Verify that you have access rights to the file, and then try again.%0
  4559. //
  4560. #define NS_E_WMP_LOGON_FAILURE           _HRESULT_TYPEDEF_(0xC00D1196L)
  4561.  
  4562. //
  4563. // MessageId: NS_E_WMP_CANNOT_FIND_FILE
  4564. //
  4565. // MessageText:
  4566. //
  4567. //  Windows Media Player cannot find the specified file. Be sure the path is typed correctly. If it is, the file does not exist at the specified location, or the computer where the file is stored is offline.%0
  4568. //
  4569. #define NS_E_WMP_CANNOT_FIND_FILE        _HRESULT_TYPEDEF_(0xC00D1197L)
  4570.  
  4571. //
  4572. // MessageId: NS_E_WMP_SERVER_INACCESSIBLE
  4573. //
  4574. // MessageText:
  4575. //
  4576. //  Windows Media Player cannot connect to the server. The server name may be incorrect or the server is busy. Try again later.%0
  4577. //
  4578. #define NS_E_WMP_SERVER_INACCESSIBLE     _HRESULT_TYPEDEF_(0xC00D1198L)
  4579.  
  4580. //
  4581. // MessageId: NS_E_WMP_UNSUPPORTED_FORMAT
  4582. //
  4583. // MessageText:
  4584. //
  4585. //  Windows Media Player cannot play the file. The file is either corrupt or the Player does not support the format you are trying to play.%0
  4586. //
  4587. #define NS_E_WMP_UNSUPPORTED_FORMAT      _HRESULT_TYPEDEF_(0xC00D1199L)
  4588.  
  4589. //
  4590. // MessageId: NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT
  4591. //
  4592. // MessageText:
  4593. //
  4594. //  Windows Media Player cannot play the file. The file may be formatted with an unsupported codec, or the Internet security setting on your computer is set too high. Lower your browser's security setting, and then try again.%0
  4595. //
  4596. #define NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT _HRESULT_TYPEDEF_(0xC00D119AL)
  4597.  
  4598. //
  4599. // MessageId: NS_E_WMP_PLAYLIST_EXISTS
  4600. //
  4601. // MessageText:
  4602. //
  4603. //  Windows Media Player cannot create the playlist because the name already exists. Type a different playlist name.%0
  4604. //
  4605. #define NS_E_WMP_PLAYLIST_EXISTS         _HRESULT_TYPEDEF_(0xC00D119BL)
  4606.  
  4607. //
  4608. // MessageId: NS_E_WMP_NONMEDIA_FILES
  4609. //
  4610. // MessageText:
  4611. //
  4612. //  Windows Media Player could not delete the playlist because it contains non-digital media files. Any digital media files in the playlist were deleted. Use Windows Explorer to delete non-digital media files, and then try deleting the playlist again.%0
  4613. //
  4614. #define NS_E_WMP_NONMEDIA_FILES          _HRESULT_TYPEDEF_(0xC00D119CL)
  4615.  
  4616. //
  4617. // MessageId: NS_E_WMP_INVALID_ASX
  4618. //
  4619. // MessageText:
  4620. //
  4621. //  Windows Media Player cannot play the file because the associated playlist is not valid.%0
  4622. //
  4623. #define NS_E_WMP_INVALID_ASX             _HRESULT_TYPEDEF_(0xC00D119DL)
  4624.  
  4625. //
  4626. // MessageId: NS_E_WMP_ALREADY_IN_USE
  4627. //
  4628. // MessageText:
  4629. //
  4630. //  Windows Media Player is already in use. Stop playing any content and close all Player dialog boxes and then try again.%0
  4631. //
  4632. #define NS_E_WMP_ALREADY_IN_USE          _HRESULT_TYPEDEF_(0xC00D119EL)
  4633.  
  4634. //
  4635. // MessageId: NS_E_WMP_IMAPI_FAILURE
  4636. //
  4637. // MessageText:
  4638. //
  4639. //  Windows Media Player has encountered an unknown error with your recordable disc.%0
  4640. //
  4641. #define NS_E_WMP_IMAPI_FAILURE           _HRESULT_TYPEDEF_(0xC00D119FL)
  4642.  
  4643. //
  4644. // MessageId: NS_E_WMP_WMDM_FAILURE
  4645. //
  4646. // MessageText:
  4647. //
  4648. //  Windows Media Player has encountered an unknown error with your portable device.  Reconnect your portable device and try again.%0
  4649. //
  4650. #define NS_E_WMP_WMDM_FAILURE            _HRESULT_TYPEDEF_(0xC00D11A0L)
  4651.  
  4652. //
  4653. // MessageId: NS_E_WMP_CODEC_NEEDED_WITH_4CC
  4654. //
  4655. // MessageText:
  4656. //
  4657. //  The %s codec is required to play this file. To determine if this codec is available to download from the Web, click Web Help.%0
  4658. //
  4659. #define NS_E_WMP_CODEC_NEEDED_WITH_4CC   _HRESULT_TYPEDEF_(0xC00D11A1L)
  4660.  
  4661. //
  4662. // MessageId: NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG
  4663. //
  4664. // MessageText:
  4665. //
  4666. //  The audio codec identified by the format tag %s is required to play this file. To determine if this codec is available to download from the Web, click Web Help.%0
  4667. //
  4668. #define NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG _HRESULT_TYPEDEF_(0xC00D11A2L)
  4669.  
  4670. //
  4671. // MessageId: NS_E_WMP_MSSAP_NOT_AVAILABLE
  4672. //
  4673. // MessageText:
  4674. //
  4675. //  To play this file, you must install the latest Windows XP service pack.  To install the service pack from the Windows Update Web site, click Web Help.%0
  4676. //
  4677. #define NS_E_WMP_MSSAP_NOT_AVAILABLE     _HRESULT_TYPEDEF_(0xC00D11A3L)
  4678.  
  4679. //
  4680. // MessageId: NS_E_WMP_WMDM_INTERFACEDEAD
  4681. //
  4682. // MessageText:
  4683. //
  4684. //  Windows Media Player no longer detects a portable device. Reconnect your portable device, and try again.%0
  4685. //
  4686. #define NS_E_WMP_WMDM_INTERFACEDEAD      _HRESULT_TYPEDEF_(0xC00D11A4L)
  4687.  
  4688. //
  4689. // MessageId: NS_E_WMP_WMDM_NOTCERTIFIED
  4690. //
  4691. // MessageText:
  4692. //
  4693. //  Windows Media Player cannot copy the file because the portable device does not support protected files.%0
  4694. //
  4695. #define NS_E_WMP_WMDM_NOTCERTIFIED       _HRESULT_TYPEDEF_(0xC00D11A5L)
  4696.  
  4697. //
  4698. // MessageId: NS_E_WMP_WMDM_LICENSE_NOTEXIST
  4699. //
  4700. // MessageText:
  4701. //
  4702. //  Windows Media Player cannot copy the file because a license for this file could not be found on your computer. If you obtained this file from a Web site, return to the site, and try downloading the file again.%0
  4703. //
  4704. #define NS_E_WMP_WMDM_LICENSE_NOTEXIST   _HRESULT_TYPEDEF_(0xC00D11A6L)
  4705.  
  4706. //
  4707. // MessageId: NS_E_WMP_WMDM_LICENSE_EXPIRED
  4708. //
  4709. // MessageText:
  4710. //
  4711. //  Windows Media Player cannot copy the file because the license for this file has expired. If you obtained this file from a Web site, return to the site, and try downloading the file again.%0
  4712. //
  4713. #define NS_E_WMP_WMDM_LICENSE_EXPIRED    _HRESULT_TYPEDEF_(0xC00D11A7L)
  4714.  
  4715. //
  4716. // MessageId: NS_E_WMP_WMDM_BUSY
  4717. //
  4718. // MessageText:
  4719. //
  4720. //  The portable device is already in use. Wait until the current process finishes or quit other programs that may be using the portable device, and then try again.%0
  4721. //
  4722. #define NS_E_WMP_WMDM_BUSY               _HRESULT_TYPEDEF_(0xC00D11A8L)
  4723.  
  4724. //
  4725. // MessageId: NS_E_WMP_WMDM_NORIGHTS
  4726. //
  4727. // MessageText:
  4728. //
  4729. //  Windows Media Player cannot copy the file because the license or device restricts it.%0
  4730. //
  4731. #define NS_E_WMP_WMDM_NORIGHTS           _HRESULT_TYPEDEF_(0xC00D11A9L)
  4732.  
  4733. //
  4734. // MessageId: NS_E_WMP_WMDM_INCORRECT_RIGHTS
  4735. //
  4736. // MessageText:
  4737. //
  4738. //  Windows Media Player cannot copy the file because the license associated with the file restricts it.%0
  4739. //
  4740. #define NS_E_WMP_WMDM_INCORRECT_RIGHTS   _HRESULT_TYPEDEF_(0xC00D11AAL)
  4741.  
  4742. //
  4743. // MessageId: NS_E_WMP_IMAPI_GENERIC
  4744. //
  4745. // MessageText:
  4746. //
  4747. //  Windows Media Player cannot copy files to the recordable disc.%0
  4748. //
  4749. #define NS_E_WMP_IMAPI_GENERIC           _HRESULT_TYPEDEF_(0xC00D11ABL)
  4750.  
  4751. //
  4752. // MessageId: NS_E_WMP_IMAPI_DEVICE_NOTPRESENT
  4753. //
  4754. // MessageText:
  4755. //
  4756. //  Windows Media Player cannot copy files to the recordable disc. Verify that the CD-R or CD-RW drive is connected, and then try again.%0
  4757. //
  4758. #define NS_E_WMP_IMAPI_DEVICE_NOTPRESENT _HRESULT_TYPEDEF_(0xC00D11ADL)
  4759.  
  4760. //
  4761. // MessageId: NS_E_WMP_IMAPI_STASHINUSE
  4762. //
  4763. // MessageText:
  4764. //
  4765. //  The CD-R or CD-RW drive may already be in use. Wait until the current process finishes or quit other programs that may be using the CD-R or CD-RW drive, and then try again.%0
  4766. //
  4767. #define NS_E_WMP_IMAPI_STASHINUSE        _HRESULT_TYPEDEF_(0xC00D11AEL)
  4768.  
  4769. //
  4770. // MessageId: NS_E_WMP_IMAPI_LOSS_OF_STREAMING
  4771. //
  4772. // MessageText:
  4773. //
  4774. //  Windows Media Player cannot copy files to the recordable disc.%0
  4775. //
  4776. #define NS_E_WMP_IMAPI_LOSS_OF_STREAMING _HRESULT_TYPEDEF_(0xC00D11AFL)
  4777.  
  4778. //
  4779. // MessageId: NS_E_WMP_SERVER_UNAVAILABLE
  4780. //
  4781. // MessageText:
  4782. //
  4783. //  Windows Media Player cannot play the file because the server is busy. Try again later.%0
  4784. //
  4785. #define NS_E_WMP_SERVER_UNAVAILABLE      _HRESULT_TYPEDEF_(0xC00D11B0L)
  4786.  
  4787. //
  4788. // MessageId: NS_E_WMP_FILE_OPEN_FAILED
  4789. //
  4790. // MessageText:
  4791. //
  4792. //  Windows Media Player cannot open the file.%0
  4793. //
  4794. #define NS_E_WMP_FILE_OPEN_FAILED        _HRESULT_TYPEDEF_(0xC00D11B1L)
  4795.  
  4796. //
  4797. // MessageId: NS_E_WMP_VERIFY_ONLINE
  4798. //
  4799. // MessageText:
  4800. //
  4801. //  To play the file, Windows Media Player must obtain a license from the Internet. Connect to the Internet, and then try again.%0
  4802. //
  4803. #define NS_E_WMP_VERIFY_ONLINE           _HRESULT_TYPEDEF_(0xC00D11B2L)
  4804.  
  4805. //
  4806. // MessageId: NS_E_WMP_SERVER_NOT_RESPONDING
  4807. //
  4808. // MessageText:
  4809. //
  4810. //  Windows Media Player cannot play the file because the server is not responding. If you entered a URL or path to play the file, verify that it is correct. If you clicked a link to play the file, the link may not be valid.%0
  4811. //
  4812. #define NS_E_WMP_SERVER_NOT_RESPONDING   _HRESULT_TYPEDEF_(0xC00D11B3L)
  4813.  
  4814. //
  4815. // MessageId: NS_E_WMP_DRM_CORRUPT_BACKUP
  4816. //
  4817. // MessageText:
  4818. //
  4819. //  Windows Media Player cannot restore your licenses because no backed up licenses were found on your computer.%0
  4820. //
  4821. #define NS_E_WMP_DRM_CORRUPT_BACKUP      _HRESULT_TYPEDEF_(0xC00D11B4L)
  4822.  
  4823. //
  4824. // MessageId: NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE
  4825. //
  4826. // MessageText:
  4827. //
  4828. //  To play the file, Windows Media Player must obtain a license from the Internet. However, the license server is currently not available. Try again later.%0
  4829. //
  4830. #define NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D11B5L)
  4831.  
  4832. //
  4833. // MessageId: NS_E_WMP_NETWORK_FIREWALL
  4834. //
  4835. // MessageText:
  4836. //
  4837. //  Windows Media Player cannot play the file. A network firewall may be preventing the Player from opening the file by using the UDP transport protocol. To play this file, try opening the file without specifying UDP.%0
  4838. //
  4839. #define NS_E_WMP_NETWORK_FIREWALL        _HRESULT_TYPEDEF_(0xC00D11B6L)
  4840.  
  4841. //
  4842. // MessageId: NS_E_WMP_NO_REMOVABLE_MEDIA
  4843. //
  4844. // MessageText:
  4845. //
  4846. //  Insert the removable media, and then try again.%0
  4847. //
  4848. #define NS_E_WMP_NO_REMOVABLE_MEDIA      _HRESULT_TYPEDEF_(0xC00D11B7L)
  4849.  
  4850. //
  4851. // MessageId: NS_E_WMP_PROXY_CONNECT_TIMEOUT
  4852. //
  4853. // MessageText:
  4854. //
  4855. //  Windows Media Player cannot play the file because the proxy server is not responding. The proxy server may be temporarily unavailable or your Player proxy settings may not be valid.%0
  4856. //
  4857. #define NS_E_WMP_PROXY_CONNECT_TIMEOUT   _HRESULT_TYPEDEF_(0xC00D11B8L)
  4858.  
  4859. //
  4860. // MessageId: NS_E_WMP_NEED_UPGRADE
  4861. //
  4862. // MessageText:
  4863. //
  4864. //  To play this file, you must upgrade to the latest version of Windows Media Player. To upgrade the Player, on the Help menu, click Check For Player Updates, and then follow the instructions.%0
  4865. //
  4866. #define NS_E_WMP_NEED_UPGRADE            _HRESULT_TYPEDEF_(0xC00D11B9L)
  4867.  
  4868. //
  4869. // MessageId: NS_E_WMP_AUDIO_HW_PROBLEM
  4870. //
  4871. // MessageText:
  4872. //
  4873. //  Windows Media Player cannot play the file because there is a problem with your sound device. There may not be a sound device installed on your computer, it may be in use by another program, or it may not be functioning properly.%0
  4874. //
  4875. #define NS_E_WMP_AUDIO_HW_PROBLEM        _HRESULT_TYPEDEF_(0xC00D11BAL)
  4876.  
  4877. //
  4878. // MessageId: NS_E_WMP_INVALID_PROTOCOL
  4879. //
  4880. // MessageText:
  4881. //
  4882. //  Windows Media Player cannot play the file because the specified protocol is not supported. In the Open URL dialog, try opening the file using a different transport protocol (for example, "http:" or "rtsp:").%0
  4883. //
  4884. #define NS_E_WMP_INVALID_PROTOCOL        _HRESULT_TYPEDEF_(0xC00D11BBL)
  4885.  
  4886. //
  4887. // MessageId: NS_E_WMP_INVALID_LIBRARY_ADD
  4888. //
  4889. // MessageText:
  4890. //
  4891. //  Windows Media Player cannot add the file to Media Library because the file format is not supported.%0
  4892. //
  4893. #define NS_E_WMP_INVALID_LIBRARY_ADD     _HRESULT_TYPEDEF_(0xC00D11BCL)
  4894.  
  4895. //
  4896. // MessageId: NS_E_WMP_MMS_NOT_SUPPORTED
  4897. //
  4898. // MessageText:
  4899. //
  4900. //  Windows Media Player cannot play the file because the specified protocol is not supported. In the Open URL dialog, try opening the file using a different transport protocol (for example, "mms:").%0
  4901. //
  4902. #define NS_E_WMP_MMS_NOT_SUPPORTED       _HRESULT_TYPEDEF_(0xC00D11BDL)
  4903.  
  4904. //
  4905. // MessageId: NS_E_WMP_NO_PROTOCOLS_SELECTED
  4906. //
  4907. // MessageText:
  4908. //
  4909. //  Windows Media Player cannot play the file because there are no streaming protocols selected. Select one or more protocols, and then try again.%0
  4910. //
  4911. #define NS_E_WMP_NO_PROTOCOLS_SELECTED   _HRESULT_TYPEDEF_(0xC00D11BEL)
  4912.  
  4913. //
  4914. // MessageId: NS_E_WMP_GOFULLSCREEN_FAILED
  4915. //
  4916. // MessageText:
  4917. //
  4918. //  To use the Full Screen command, you may need to adjust your Windows display settings. Open Display in Control Panel, and try setting Hardware acceleration to Full.%0
  4919. //
  4920. #define NS_E_WMP_GOFULLSCREEN_FAILED     _HRESULT_TYPEDEF_(0xC00D11BFL)
  4921.  
  4922. //
  4923. // MessageId: NS_E_WMP_NETWORK_ERROR
  4924. //
  4925. // MessageText:
  4926. //
  4927. //  Windows Media Player cannot play the file because a network error occurred.%0
  4928. //
  4929. #define NS_E_WMP_NETWORK_ERROR           _HRESULT_TYPEDEF_(0xC00D11C0L)
  4930.  
  4931. //
  4932. // MessageId: NS_E_WMP_CONNECT_TIMEOUT
  4933. //
  4934. // MessageText:
  4935. //
  4936. //  Windows Media Player cannot play the file because the server is not responding. Verify that you are connected to the network, and then try again later.%0
  4937. //
  4938. #define NS_E_WMP_CONNECT_TIMEOUT         _HRESULT_TYPEDEF_(0xC00D11C1L)
  4939.  
  4940. //
  4941. // MessageId: NS_E_WMP_MULTICAST_DISABLED
  4942. //
  4943. // MessageText:
  4944. //
  4945. //  Windows Media Player cannot play the file because the multicast protocol is not enabled. On the Tools menu, click Options, click the Network tab, and then select the Multicast check box.%0
  4946. //
  4947. #define NS_E_WMP_MULTICAST_DISABLED      _HRESULT_TYPEDEF_(0xC00D11C2L)
  4948.  
  4949. //
  4950. // MessageId: NS_E_WMP_SERVER_DNS_TIMEOUT
  4951. //
  4952. // MessageText:
  4953. //
  4954. //  Windows Media Player cannot play the file because a network problem occurred. Verify that you are connected to the network, and then try again later.%0
  4955. //
  4956. #define NS_E_WMP_SERVER_DNS_TIMEOUT      _HRESULT_TYPEDEF_(0xC00D11C3L)
  4957.  
  4958. //
  4959. // MessageId: NS_E_WMP_PROXY_NOT_FOUND
  4960. //
  4961. // MessageText:
  4962. //
  4963. //  Windows Media Player cannot play the file because the network proxy server could not be found. Verify your proxy settings, and then try again.%0
  4964. //
  4965. #define NS_E_WMP_PROXY_NOT_FOUND         _HRESULT_TYPEDEF_(0xC00D11C4L)
  4966.  
  4967. //
  4968. // MessageId: NS_E_WMP_TAMPERED_CONTENT
  4969. //
  4970. // MessageText:
  4971. //
  4972. //  Windows Media Player cannot play the file because it is damaged or corrupted.%0
  4973. //
  4974. #define NS_E_WMP_TAMPERED_CONTENT        _HRESULT_TYPEDEF_(0xC00D11C5L)
  4975.  
  4976. //
  4977. // MessageId: NS_E_WMP_OUTOFMEMORY
  4978. //
  4979. // MessageText:
  4980. //
  4981. //  Your computer is running low on memory. Quit other programs, and then try again.%0
  4982. //
  4983. #define NS_E_WMP_OUTOFMEMORY             _HRESULT_TYPEDEF_(0xC00D11C6L)
  4984.  
  4985. //
  4986. // MessageId: NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED
  4987. //
  4988. // MessageText:
  4989. //
  4990. //  Windows Media Player cannot play the file because the required audio codec is not installed on your computer.%0
  4991. //
  4992. #define NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D11C7L)
  4993.  
  4994. //
  4995. // MessageId: NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED
  4996. //
  4997. // MessageText:
  4998. //
  4999. //  Windows Media Player cannot play the file because the required video codec is not installed on your computer.%0
  5000. //
  5001. #define NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D11C8L)
  5002.  
  5003. //
  5004. // MessageId: NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE
  5005. //
  5006. // MessageText:
  5007. //
  5008. //  Windows Media Player cannot copy the files to the recordable disc.%0
  5009. //
  5010. #define NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE _HRESULT_TYPEDEF_(0xC00D11C9L)
  5011.  
  5012. //
  5013. // MessageId: NS_E_WMP_DRM_DRIVER_AUTH_FAILURE
  5014. //
  5015. // MessageText:
  5016. //
  5017. //  Windows Media Player cannot play the licensed file because there is a problem with your sound device. Try installing a new device driver or use a different sound device.%0
  5018. //
  5019. #define NS_E_WMP_DRM_DRIVER_AUTH_FAILURE _HRESULT_TYPEDEF_(0xC00D11CAL)
  5020.  
  5021. //
  5022. // MessageId: NS_E_WMP_NETWORK_RESOURCE_FAILURE
  5023. //
  5024. // MessageText:
  5025. //
  5026. //  Windows Media Player encountered a network problem. Restart the Player.%0
  5027. //
  5028. #define NS_E_WMP_NETWORK_RESOURCE_FAILURE _HRESULT_TYPEDEF_(0xC00D11CBL)
  5029.  
  5030. //
  5031. // MessageId: NS_E_WMP_UPGRADE_APPLICATION
  5032. //
  5033. // MessageText:
  5034. //
  5035. //  Windows Media Player is not installed properly. Reinstall the Player.%0
  5036. //
  5037. #define NS_E_WMP_UPGRADE_APPLICATION     _HRESULT_TYPEDEF_(0xC00D11CCL)
  5038.  
  5039. //
  5040. // MessageId: NS_E_WMP_UNKNOWN_ERROR
  5041. //
  5042. // MessageText:
  5043. //
  5044. //  Windows Media Player encountered an unknown error.%0
  5045. //
  5046. #define NS_E_WMP_UNKNOWN_ERROR           _HRESULT_TYPEDEF_(0xC00D11CDL)
  5047.  
  5048. //
  5049. // MessageId: NS_E_WMP_INVALID_KEY
  5050. //
  5051. // MessageText:
  5052. //
  5053. //  Windows Media Player cannot play the file because the required codec is not valid.%0
  5054. //
  5055. #define NS_E_WMP_INVALID_KEY             _HRESULT_TYPEDEF_(0xC00D11CEL)
  5056.  
  5057. //
  5058. // MessageId: NS_E_WMP_CD_ANOTHER_USER
  5059. //
  5060. // MessageText:
  5061. //
  5062. //  The CD drive is in use by another user. Wait for the operation to complete, and then try again.%0
  5063. //
  5064. #define NS_E_WMP_CD_ANOTHER_USER         _HRESULT_TYPEDEF_(0xC00D11CFL)
  5065.  
  5066. //
  5067. // MessageId: NS_E_WMP_DRM_NEEDS_AUTHORIZATION
  5068. //
  5069. // MessageText:
  5070. //
  5071. //  Windows Media Player cannot play the licensed file because the required security upgrade is not available for download.%0
  5072. //
  5073. #define NS_E_WMP_DRM_NEEDS_AUTHORIZATION _HRESULT_TYPEDEF_(0xC00D11D0L)
  5074.  
  5075. //
  5076. // MessageId: NS_E_WMP_BAD_DRIVER
  5077. //
  5078. // MessageText:
  5079. //
  5080. //  Windows Media Player cannot play the file because there may be a problem with your sound or video device. Try installing a new device driver.%0
  5081. //
  5082. #define NS_E_WMP_BAD_DRIVER              _HRESULT_TYPEDEF_(0xC00D11D1L)
  5083.  
  5084. //
  5085. // MessageId: NS_E_WMP_ACCESS_DENIED
  5086. //
  5087. // MessageText:
  5088. //
  5089. //  Windows Media Player cannot access the file.%0
  5090. //
  5091. #define NS_E_WMP_ACCESS_DENIED           _HRESULT_TYPEDEF_(0xC00D11D2L)
  5092.  
  5093. //
  5094. // MessageId: NS_E_WMP_LICENSE_RESTRICTS
  5095. //
  5096. // MessageText:
  5097. //
  5098. //  Windows Media Player cannot copy the file to the device because the license restricts it.%0
  5099. //
  5100. #define NS_E_WMP_LICENSE_RESTRICTS       _HRESULT_TYPEDEF_(0xC00D11D3L)
  5101.  
  5102. //
  5103. // MessageId: NS_E_WMP_INVALID_REQUEST
  5104. //
  5105. // MessageText:
  5106. //
  5107. //  Windows Media Player cannot perform the requested action at this time.%0
  5108. //
  5109. #define NS_E_WMP_INVALID_REQUEST         _HRESULT_TYPEDEF_(0xC00D11D4L)
  5110.  
  5111. //
  5112. // MessageId: NS_E_WMP_CD_STASH_NO_SPACE
  5113. //
  5114. // MessageText:
  5115. //
  5116. //  Windows Media Player cannot copy the files because there is not enough free disk space to store the temporary files. Delete some unneeded files on your hard disk, and then try again.%0
  5117. //
  5118. #define NS_E_WMP_CD_STASH_NO_SPACE       _HRESULT_TYPEDEF_(0xC00D11D5L)
  5119.  
  5120. //
  5121. // MessageId: NS_E_WMP_DRM_NEW_HARDWARE
  5122. //
  5123. // MessageText:
  5124. //
  5125. //  Windows Media Player cannot play the file because the associated license is either corrupted or not valid. The license may no longer be valid if you have replaced hardware components in your computer.%0
  5126. //
  5127. #define NS_E_WMP_DRM_NEW_HARDWARE        _HRESULT_TYPEDEF_(0xC00D11D6L)
  5128.  
  5129. //
  5130. // MessageId: NS_E_WMP_DRM_INVALID_SIG
  5131. //
  5132. // MessageText:
  5133. //
  5134. //  The required security upgrade cannot be validated. Try installing the latest Internet Explorer service pack. To install the service pack from the Windows Update Web site, click Web Help.%0
  5135. //
  5136. #define NS_E_WMP_DRM_INVALID_SIG         _HRESULT_TYPEDEF_(0xC00D11D7L)
  5137.  
  5138. //
  5139. // MessageId: NS_E_WMP_DRM_CANNOT_RESTORE
  5140. //
  5141. // MessageText:
  5142. //
  5143. //  Windows Media Player cannot restore your licenses because you have exceeded the restore limit for the day. Try again tomorrow.%0
  5144. //
  5145. #define NS_E_WMP_DRM_CANNOT_RESTORE      _HRESULT_TYPEDEF_(0xC00D11D8L)
  5146.  
  5147. //
  5148. // WMP CD Filter Error codes extension
  5149. //
  5150. //
  5151. // MessageId: NS_E_CD_NO_BUFFERS_READ
  5152. //
  5153. // MessageText:
  5154. //
  5155. //  Windows Media Player encountered an error when reading the CD-ROM drive in digital mode. You can try to use digital mode again, or you can switch the Player to analog mode.%0
  5156. //
  5157. #define NS_E_CD_NO_BUFFERS_READ          _HRESULT_TYPEDEF_(0xC00D11F8L)
  5158.  
  5159. //
  5160. // MessageId: NS_E_CD_EMPTY_TRACK_QUEUE
  5161. //
  5162. // MessageText:
  5163. //
  5164. //  No CD track was specified for playback.%0
  5165. //
  5166. #define NS_E_CD_EMPTY_TRACK_QUEUE        _HRESULT_TYPEDEF_(0xC00D11F9L)
  5167.  
  5168. //
  5169. // MessageId: NS_E_CD_NO_READER
  5170. //
  5171. // MessageText:
  5172. //
  5173. //  The CD filter was not able to create the CD reader.%0
  5174. //
  5175. #define NS_E_CD_NO_READER                _HRESULT_TYPEDEF_(0xC00D11FAL)
  5176.  
  5177. //
  5178. // MessageId: NS_E_CD_ISRC_INVALID
  5179. //
  5180. // MessageText:
  5181. //
  5182. //  Invalid ISRC code.%0
  5183. //
  5184. #define NS_E_CD_ISRC_INVALID             _HRESULT_TYPEDEF_(0xC00D11FBL)
  5185.  
  5186. //
  5187. // MessageId: NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID
  5188. //
  5189. // MessageText:
  5190. //
  5191. //  Invalid Media Catalog Number.%0
  5192. //
  5193. #define NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID _HRESULT_TYPEDEF_(0xC00D11FCL)
  5194.  
  5195. //
  5196. // MessageId: NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION
  5197. //
  5198. // MessageText:
  5199. //
  5200. //  Media Player has detected that your CD drive cannot play back audio CDs correctly because the drive is too slow with error correction turned on. Please turn off error correction for this drive.%0
  5201. //
  5202. #define NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION _HRESULT_TYPEDEF_(0xC00D11FDL)
  5203.  
  5204. //
  5205. // MessageId: NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS
  5206. //
  5207. // MessageText:
  5208. //
  5209. //  The CD track is too small to make a good estimate of the CD's speed.%0
  5210. //
  5211. #define NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS _HRESULT_TYPEDEF_(0xC00D11FEL)
  5212.  
  5213. //
  5214. // MessageId: NS_E_CD_QUEUEING_DISABLED
  5215. //
  5216. // MessageText:
  5217. //
  5218. //  Cannot queue the given CD track as queuing is disabled.%0
  5219. //
  5220. #define NS_E_CD_QUEUEING_DISABLED        _HRESULT_TYPEDEF_(0xC00D11FFL)
  5221.  
  5222. //
  5223. // WMP Policy error codes
  5224. //
  5225. //
  5226. // MessageId: NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED
  5227. //
  5228. // MessageText:
  5229. //
  5230. //  Media Player failed to read a policy. This can happen when the policy is not present in the registry or when there is a failure to read from the registry.%0
  5231. //
  5232. #define NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED _HRESULT_TYPEDEF_(0xC00D122AL)
  5233.  
  5234. //
  5235. //Background download plugin
  5236. //
  5237. //
  5238. // MessageId: NS_E_WMP_HWND_NOTFOUND
  5239. //
  5240. // MessageText:
  5241. //
  5242. //  Windows Media Player main window not found. The download manager needs to find it to work properly. Please try to run Windows Media Player again.%0
  5243. //
  5244. #define NS_E_WMP_HWND_NOTFOUND           _HRESULT_TYPEDEF_(0xC00D125CL)
  5245.  
  5246. //
  5247. // MessageId: NS_E_BKGDOWNLOAD_WRONG_NO_FILES
  5248. //
  5249. // MessageText:
  5250. //
  5251. //  Windows media player encountered a download with wrong number of files. This may happen if some other application is trying to create jobs with same signature as Windows Media Player.%0
  5252. //
  5253. #define NS_E_BKGDOWNLOAD_WRONG_NO_FILES  _HRESULT_TYPEDEF_(0xC00D125DL)
  5254.  
  5255. //
  5256. // MessageId: NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB
  5257. //
  5258. // MessageText:
  5259. //
  5260. //  Windows Media Player tried to complete a download that was already cancelled. The file will not be available.%0
  5261. //
  5262. #define NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB _HRESULT_TYPEDEF_(0xC00D125EL)
  5263.  
  5264. //
  5265. // MessageId: NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB
  5266. //
  5267. // MessageText:
  5268. //
  5269. //  Windows Media Player tried to cancel a download that was already completed. The file will not be removed.%0
  5270. //
  5271. #define NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB _HRESULT_TYPEDEF_(0xC00D125FL)
  5272.  
  5273. //
  5274. // MessageId: NS_E_BKGDOWNLOAD_NOJOBPOINTER
  5275. //
  5276. // MessageText:
  5277. //
  5278. //  Windows Media Player is trying to access an invalid download.%0
  5279. //
  5280. #define NS_E_BKGDOWNLOAD_NOJOBPOINTER    _HRESULT_TYPEDEF_(0xC00D1260L)
  5281.  
  5282. //
  5283. // MessageId: NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE
  5284. //
  5285. // MessageText:
  5286. //
  5287. //  This download was not created by Windows Media Player.%0
  5288. //
  5289. #define NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE _HRESULT_TYPEDEF_(0xC00D1261L)
  5290.  
  5291. //
  5292. // MessageId: NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE
  5293. //
  5294. // MessageText:
  5295. //
  5296. //  The Windows Media Player download manager failed to create a temporary file name. This may happen if the path in invalid or if the disk is full. Please check your system and try again.%0
  5297. //
  5298. #define NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE _HRESULT_TYPEDEF_(0xC00D1262L)
  5299.  
  5300. //
  5301. // MessageId: NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE
  5302. //
  5303. // MessageText:
  5304. //
  5305. //  The Windows Media Player download manager plugin failed to initialize. This may happen if the system is out of resources. Please check your system and try again.%0
  5306. //
  5307. #define NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE _HRESULT_TYPEDEF_(0xC00D1263L)
  5308.  
  5309. //
  5310. // MessageId: NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE
  5311. //
  5312. // MessageText:
  5313. //
  5314. //  The Windows Media Player download manager failed to move the file.%0
  5315. //
  5316. #define NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE _HRESULT_TYPEDEF_(0xC00D1264L)
  5317.  
  5318. //
  5319. // MessageId: NS_E_BKGDOWNLOAD_CALLFUNCFAILED
  5320. //
  5321. // MessageText:
  5322. //
  5323. //  Download manager failed to accomplish a task. This happened because the system has no resources to allocate.%0
  5324. //
  5325. #define NS_E_BKGDOWNLOAD_CALLFUNCFAILED  _HRESULT_TYPEDEF_(0xC00D1265L)
  5326.  
  5327. //
  5328. // MessageId: NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT
  5329. //
  5330. // MessageText:
  5331. //
  5332. //  The Windows Media Player download manager failed to accomplish a task because the task took too long to execute.%0
  5333. //
  5334. #define NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT _HRESULT_TYPEDEF_(0xC00D1266L)
  5335.  
  5336. //
  5337. // MessageId: NS_E_BKGDOWNLOAD_CALLFUNCENDED
  5338. //
  5339. // MessageText:
  5340. //
  5341. //  The Windows Media Player download manager failed to accomplish a task because Windows Media Player is terminating the service. The task will be recovered when Windows Media Player starts again.%0
  5342. //
  5343. #define NS_E_BKGDOWNLOAD_CALLFUNCENDED   _HRESULT_TYPEDEF_(0xC00D1267L)
  5344.  
  5345. //
  5346. // MessageId: NS_E_BKGDOWNLOAD_WMDUNPACKFAILED
  5347. //
  5348. // MessageText:
  5349. //
  5350. //  The Windows Media Player download manager failed to unpack a WMD package that was transferred. The file will be deleted and the operation will not be successfully completed.%0
  5351. //
  5352. #define NS_E_BKGDOWNLOAD_WMDUNPACKFAILED _HRESULT_TYPEDEF_(0xC00D1268L)
  5353.  
  5354. //
  5355. // MessageId: NS_E_BKGDOWNLOAD_FAILEDINITIALIZE
  5356. //
  5357. // MessageText:
  5358. //
  5359. //  The Windows Media Player download manager failed to initialize. This may happen if the system is out of resources. Please check your system and try again.%0
  5360. //
  5361. #define NS_E_BKGDOWNLOAD_FAILEDINITIALIZE _HRESULT_TYPEDEF_(0xC00D1269L)
  5362.  
  5363. //
  5364. // MessageId: NS_E_INTERFACE_NOT_REGISTERED_IN_GIT
  5365. //
  5366. // MessageText:
  5367. //
  5368. //  Windows Media Player failed to access a required functionality. This could be caused by wrong system or media player dlls being loaded.%0
  5369. //
  5370. #define NS_E_INTERFACE_NOT_REGISTERED_IN_GIT _HRESULT_TYPEDEF_(0xC00D126AL)
  5371.  
  5372. //
  5373. // MessageId: NS_E_BKGDOWNLOAD_INVALID_FILE_NAME
  5374. //
  5375. // MessageText:
  5376. //
  5377. //  Windows Media Player failed to get the file name of the requested download. The requested download will be canceled.%0
  5378. //
  5379. #define NS_E_BKGDOWNLOAD_INVALID_FILE_NAME _HRESULT_TYPEDEF_(0xC00D126BL)
  5380.  
  5381. //
  5382. //Image Graph Errors 4750 -- 4800
  5383. //
  5384. //
  5385. // MessageId: NS_E_IMAGE_DOWNLOAD_FAILED
  5386. //
  5387. // MessageText:
  5388. //
  5389. //  An error was encountered downloading the image.%0
  5390. //
  5391. #define NS_E_IMAGE_DOWNLOAD_FAILED       _HRESULT_TYPEDEF_(0xC00D128EL)
  5392.  
  5393. //
  5394. // UDRM errors
  5395. //
  5396. //
  5397. // MessageId: NS_E_WMP_UDRM_NOUSERLIST
  5398. //
  5399. // MessageText:
  5400. //
  5401. //  There was a problem while trying to get the list of activated users for this machine. The License acquisition process will be stopped.%0
  5402. //
  5403. #define NS_E_WMP_UDRM_NOUSERLIST         _HRESULT_TYPEDEF_(0xC00D12C0L)
  5404.  
  5405. //
  5406. // MessageId: NS_E_WMP_DRM_NOT_ACQUIRING
  5407. //
  5408. // MessageText:
  5409. //
  5410. //  The Windows Media Player is trying to acquire a license for a file that is not being used anymore. The License acquisition process will stop.%0
  5411. //
  5412. #define NS_E_WMP_DRM_NOT_ACQUIRING       _HRESULT_TYPEDEF_(0xC00D12C1L)
  5413.  
  5414. //
  5415. // String is too large
  5416. //
  5417. //
  5418. // MessageId: NS_E_WMP_BSTR_TOO_LONG
  5419. //
  5420. // MessageText:
  5421. //
  5422. //  The parameter is invalid.%0
  5423. //
  5424. #define NS_E_WMP_BSTR_TOO_LONG           _HRESULT_TYPEDEF_(0xC00D12F2L)
  5425.  
  5426. //
  5427. // Autoplay errors 4860 --- 4870
  5428. //
  5429. //
  5430. // MessageId: NS_E_WMP_AUTOPLAY_INVALID_STATE
  5431. //
  5432. // MessageText:
  5433. //
  5434. //  Invalid state for this request.%0
  5435. //
  5436. #define NS_E_WMP_AUTOPLAY_INVALID_STATE  _HRESULT_TYPEDEF_(0xC00D12FCL)
  5437.  
  5438. //
  5439. // CURL Errors 4900 -- 4949
  5440. //
  5441. //
  5442. // MessageId: NS_E_CURL_NOTSAFE
  5443. //
  5444. // MessageText:
  5445. //
  5446. //  The URL is not safe for the operation specified.%0
  5447. //
  5448. #define NS_E_CURL_NOTSAFE                _HRESULT_TYPEDEF_(0xC00D1324L)
  5449.  
  5450. //
  5451. // MessageId: NS_E_CURL_INVALIDCHAR
  5452. //
  5453. // MessageText:
  5454. //
  5455. //  The URL contains one or more invalid characters.%0
  5456. //
  5457. #define NS_E_CURL_INVALIDCHAR            _HRESULT_TYPEDEF_(0xC00D1325L)
  5458.  
  5459. //
  5460. // MessageId: NS_E_CURL_INVALIDHOSTNAME
  5461. //
  5462. // MessageText:
  5463. //
  5464. //  The URL contains an invalid hostname.%0
  5465. //
  5466. #define NS_E_CURL_INVALIDHOSTNAME        _HRESULT_TYPEDEF_(0xC00D1326L)
  5467.  
  5468. //
  5469. // MessageId: NS_E_CURL_INVALIDPATH
  5470. //
  5471. // MessageText:
  5472. //
  5473. //  The URL contains an invalid path.%0
  5474. //
  5475. #define NS_E_CURL_INVALIDPATH            _HRESULT_TYPEDEF_(0xC00D1327L)
  5476.  
  5477. //
  5478. // MessageId: NS_E_CURL_INVALIDSCHEME
  5479. //
  5480. // MessageText:
  5481. //
  5482. //  The URL contains an invalid scheme.%0
  5483. //
  5484. #define NS_E_CURL_INVALIDSCHEME          _HRESULT_TYPEDEF_(0xC00D1328L)
  5485.  
  5486. //
  5487. // MessageId: NS_E_CURL_INVALIDURL
  5488. //
  5489. // MessageText:
  5490. //
  5491. //  The URL is invalid.%0
  5492. //
  5493. #define NS_E_CURL_INVALIDURL             _HRESULT_TYPEDEF_(0xC00D1329L)
  5494.  
  5495. //
  5496. // MessageId: NS_E_CURL_CANTWALK
  5497. //
  5498. // MessageText:
  5499. //
  5500. //  The URL would change the root.%0
  5501. //
  5502. #define NS_E_CURL_CANTWALK               _HRESULT_TYPEDEF_(0xC00D132BL)
  5503.  
  5504. //
  5505. // MessageId: NS_E_CURL_INVALIDPORT
  5506. //
  5507. // MessageText:
  5508. //
  5509. //  The URL port is invalid.%0
  5510. //
  5511. #define NS_E_CURL_INVALIDPORT            _HRESULT_TYPEDEF_(0xC00D132CL)
  5512.  
  5513. //
  5514. // MessageId: NS_E_CURLHELPER_NOTADIRECTORY
  5515. //
  5516. // MessageText:
  5517. //
  5518. //  The URL is not a directory.%0
  5519. //
  5520. #define NS_E_CURLHELPER_NOTADIRECTORY    _HRESULT_TYPEDEF_(0xC00D132DL)
  5521.  
  5522. //
  5523. // MessageId: NS_E_CURLHELPER_NOTAFILE
  5524. //
  5525. // MessageText:
  5526. //
  5527. //  The URL is not a file.%0
  5528. //
  5529. #define NS_E_CURLHELPER_NOTAFILE         _HRESULT_TYPEDEF_(0xC00D132EL)
  5530.  
  5531. //
  5532. // MessageId: NS_E_CURL_CANTDECODE
  5533. //
  5534. // MessageText:
  5535. //
  5536. //  The URL contains characters that could not be decoded.  The URL may be truncated or incomplete.%0
  5537. //
  5538. #define NS_E_CURL_CANTDECODE             _HRESULT_TYPEDEF_(0xC00D132FL)
  5539.  
  5540. //
  5541. // MessageId: NS_E_CURLHELPER_NOTRELATIVE
  5542. //
  5543. // MessageText:
  5544. //
  5545. //  The specified relative URL is actually not a relative URL.%0
  5546. //
  5547. #define NS_E_CURLHELPER_NOTRELATIVE      _HRESULT_TYPEDEF_(0xC00D1330L)
  5548.  
  5549. //
  5550. // MessageId: NS_E_CURL_INVALIDBUFFERSIZE
  5551. //
  5552. // MessageText:
  5553. //
  5554. //  The buffer is smaller than the size specified.%0
  5555. //
  5556. #define NS_E_CURL_INVALIDBUFFERSIZE      _HRESULT_TYPEDEF_(0xC00D1355L)
  5557.  
  5558. //
  5559. // Subscription Service Errors 4950 -- 4969
  5560. //
  5561. //
  5562. // MessageId: NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED
  5563. //
  5564. // MessageText:
  5565. //
  5566. //  This content is provided by a music service. The content cannot be played, possibly because a valid license does not exist. Please contact the music service with questions.%0
  5567. //
  5568. #define NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED _HRESULT_TYPEDEF_(0xC00D1356L)
  5569.  
  5570. //
  5571. // Advanced Edit Dialog Errors 4970 -- 4989
  5572. //
  5573. //
  5574. // MessageId: NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES
  5575. //
  5576. // MessageText:
  5577. //
  5578. //  Not all your images were saved to the file. Only 7MB of images may be saved to a media file.%0
  5579. //
  5580. #define NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES _HRESULT_TYPEDEF_(0xC00D136AL)
  5581.  
  5582.  
  5583.  
  5584. /////////////////////////////////////////////////////////////////////////
  5585. //
  5586. // Windows Media Server Errors
  5587. //
  5588. // IdRange = 5000 - 5999
  5589. //
  5590. /////////////////////////////////////////////////////////////////////////
  5591.  
  5592. //
  5593. // MessageId: NS_E_REDIRECT
  5594. //
  5595. // MessageText:
  5596. //
  5597. //  The client redirected to another server.%0
  5598. //
  5599. #define NS_E_REDIRECT                    _HRESULT_TYPEDEF_(0xC00D1388L)
  5600.  
  5601. //
  5602. // MessageId: NS_E_STALE_PRESENTATION
  5603. //
  5604. // MessageText:
  5605. //
  5606. //  The streaming media description is no longer current.%0
  5607. //
  5608. #define NS_E_STALE_PRESENTATION          _HRESULT_TYPEDEF_(0xC00D1389L)
  5609.  
  5610.  
  5611.  // Namespace Errors
  5612.  
  5613. //
  5614. // MessageId: NS_E_NAMESPACE_WRONG_PERSIST
  5615. //
  5616. // MessageText:
  5617. //
  5618. //  It is not possible to create a persistent namespace node under a transient parent node.%0
  5619. //
  5620. #define NS_E_NAMESPACE_WRONG_PERSIST     _HRESULT_TYPEDEF_(0xC00D138AL)
  5621.  
  5622. //
  5623. // MessageId: NS_E_NAMESPACE_WRONG_TYPE
  5624. //
  5625. // MessageText:
  5626. //
  5627. //  It is not possible to store a value in a namespace node that has a different value type.%0
  5628. //
  5629. #define NS_E_NAMESPACE_WRONG_TYPE        _HRESULT_TYPEDEF_(0xC00D138BL)
  5630.  
  5631. //
  5632. // MessageId: NS_E_NAMESPACE_NODE_CONFLICT
  5633. //
  5634. // MessageText:
  5635. //
  5636. //  It is not possible to remove the root namespace node.%0
  5637. //
  5638. #define NS_E_NAMESPACE_NODE_CONFLICT     _HRESULT_TYPEDEF_(0xC00D138CL)
  5639.  
  5640. //
  5641. // MessageId: NS_E_NAMESPACE_NODE_NOT_FOUND
  5642. //
  5643. // MessageText:
  5644. //
  5645. //  The specified namespace node could not be found.%0
  5646. //
  5647. #define NS_E_NAMESPACE_NODE_NOT_FOUND    _HRESULT_TYPEDEF_(0xC00D138DL)
  5648.  
  5649. //
  5650. // MessageId: NS_E_NAMESPACE_BUFFER_TOO_SMALL
  5651. //
  5652. // MessageText:
  5653. //
  5654. //  The buffer supplied to hold namespace node string is too small.%0
  5655. //
  5656. #define NS_E_NAMESPACE_BUFFER_TOO_SMALL  _HRESULT_TYPEDEF_(0xC00D138EL)
  5657.  
  5658. //
  5659. // MessageId: NS_E_NAMESPACE_TOO_MANY_CALLBACKS
  5660. //
  5661. // MessageText:
  5662. //
  5663. //  The callback list on a namespace node is at the maximum size.%0
  5664. //
  5665. #define NS_E_NAMESPACE_TOO_MANY_CALLBACKS _HRESULT_TYPEDEF_(0xC00D138FL)
  5666.  
  5667. //
  5668. // MessageId: NS_E_NAMESPACE_DUPLICATE_CALLBACK
  5669. //
  5670. // MessageText:
  5671. //
  5672. //  It is not possible to register an already-registered callback on a namespace node.%0
  5673. //
  5674. #define NS_E_NAMESPACE_DUPLICATE_CALLBACK _HRESULT_TYPEDEF_(0xC00D1390L)
  5675.  
  5676. //
  5677. // MessageId: NS_E_NAMESPACE_CALLBACK_NOT_FOUND
  5678. //
  5679. // MessageText:
  5680. //
  5681. //  Cannot find the callback in the namespace when attempting to remove the callback.%0
  5682. //
  5683. #define NS_E_NAMESPACE_CALLBACK_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D1391L)
  5684.  
  5685. //
  5686. // MessageId: NS_E_NAMESPACE_NAME_TOO_LONG
  5687. //
  5688. // MessageText:
  5689. //
  5690. //  The namespace node name exceeds the allowed maximum length.%0
  5691. //
  5692. #define NS_E_NAMESPACE_NAME_TOO_LONG     _HRESULT_TYPEDEF_(0xC00D1392L)
  5693.  
  5694. //
  5695. // MessageId: NS_E_NAMESPACE_DUPLICATE_NAME
  5696. //
  5697. // MessageText:
  5698. //
  5699. //  Cannot create a namespace node that already exists.%0
  5700. //
  5701. #define NS_E_NAMESPACE_DUPLICATE_NAME    _HRESULT_TYPEDEF_(0xC00D1393L)
  5702.  
  5703. //
  5704. // MessageId: NS_E_NAMESPACE_EMPTY_NAME
  5705. //
  5706. // MessageText:
  5707. //
  5708. //  The namespace node name cannot be a null string.%0
  5709. //
  5710. #define NS_E_NAMESPACE_EMPTY_NAME        _HRESULT_TYPEDEF_(0xC00D1394L)
  5711.  
  5712. //
  5713. // MessageId: NS_E_NAMESPACE_INDEX_TOO_LARGE
  5714. //
  5715. // MessageText:
  5716. //
  5717. //  Finding a child namespace node by index failed because the index exceeded the number of children.%0
  5718. //
  5719. #define NS_E_NAMESPACE_INDEX_TOO_LARGE   _HRESULT_TYPEDEF_(0xC00D1395L)
  5720.  
  5721. //
  5722. // MessageId: NS_E_NAMESPACE_BAD_NAME
  5723. //
  5724. // MessageText:
  5725. //
  5726. //  The namespace node name is invalid.%0
  5727. //
  5728. #define NS_E_NAMESPACE_BAD_NAME          _HRESULT_TYPEDEF_(0xC00D1396L)
  5729.  
  5730. //
  5731. // MessageId: NS_E_NAMESPACE_WRONG_SECURITY
  5732. //
  5733. // MessageText:
  5734. //
  5735. //  It is not possible to store a value in a namespace node that has a different security type.%0
  5736. //
  5737. #define NS_E_NAMESPACE_WRONG_SECURITY    _HRESULT_TYPEDEF_(0xC00D1397L)
  5738.  
  5739.  
  5740.  // Cache Errors 5100-5199
  5741.  
  5742. //
  5743. // MessageId: NS_E_CACHE_ARCHIVE_CONFLICT
  5744. //
  5745. // MessageText:
  5746. //
  5747. //  The archive request conflicts with other requests in progress.%0
  5748. //
  5749. #define NS_E_CACHE_ARCHIVE_CONFLICT      _HRESULT_TYPEDEF_(0xC00D13ECL)
  5750.  
  5751. //
  5752. // MessageId: NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND
  5753. //
  5754. // MessageText:
  5755. //
  5756. //  The specified origin server cannot be found.%0
  5757. //
  5758. #define NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND _HRESULT_TYPEDEF_(0xC00D13EDL)
  5759.  
  5760. //
  5761. // MessageId: NS_E_CACHE_ORIGIN_SERVER_TIMEOUT
  5762. //
  5763. // MessageText:
  5764. //
  5765. //  The specified origin server is not responding.%0
  5766. //
  5767. #define NS_E_CACHE_ORIGIN_SERVER_TIMEOUT _HRESULT_TYPEDEF_(0xC00D13EEL)
  5768.  
  5769. //
  5770. // MessageId: NS_E_CACHE_NOT_BROADCAST
  5771. //
  5772. // MessageText:
  5773. //
  5774. //  The internal code for HTTP status code 412 Precondition Failed due to not broadcast type.%0
  5775. //
  5776. #define NS_E_CACHE_NOT_BROADCAST         _HRESULT_TYPEDEF_(0xC00D13EFL)
  5777.  
  5778. //
  5779. // MessageId: NS_E_CACHE_CANNOT_BE_CACHED
  5780. //
  5781. // MessageText:
  5782. //
  5783. //  The internal code for HTTP status code 403 Forbidden due to not cacheable.%0
  5784. //
  5785. #define NS_E_CACHE_CANNOT_BE_CACHED      _HRESULT_TYPEDEF_(0xC00D13F0L)
  5786.  
  5787. //
  5788. // MessageId: NS_E_CACHE_NOT_MODIFIED
  5789. //
  5790. // MessageText:
  5791. //
  5792. //  The internal code for HTTP status code 304 Not Modified.%0
  5793. //
  5794. #define NS_E_CACHE_NOT_MODIFIED          _HRESULT_TYPEDEF_(0xC00D13F1L)
  5795.  
  5796.  
  5797. // Object Model Errors 5200-5299
  5798.  
  5799. //
  5800. // MessageId: NS_E_CANNOT_REMOVE_PUBLISHING_POINT
  5801. //
  5802. // MessageText:
  5803. //
  5804. //  It is not possible to remove a cache or proxy publishing point.%0
  5805. //
  5806. #define NS_E_CANNOT_REMOVE_PUBLISHING_POINT _HRESULT_TYPEDEF_(0xC00D1450L)
  5807.  
  5808. //
  5809. // MessageId: NS_E_CANNOT_REMOVE_PLUGIN
  5810. //
  5811. // MessageText:
  5812. //
  5813. //  It is not possible to remove the last instance of a type of plug-in.%0
  5814. //
  5815. #define NS_E_CANNOT_REMOVE_PLUGIN        _HRESULT_TYPEDEF_(0xC00D1451L)
  5816.  
  5817. //
  5818. // MessageId: NS_E_WRONG_PUBLISHING_POINT_TYPE
  5819. //
  5820. // MessageText:
  5821. //
  5822. //  Cache and proxy publishing points do not support this property or method.%0
  5823. //
  5824. #define NS_E_WRONG_PUBLISHING_POINT_TYPE _HRESULT_TYPEDEF_(0xC00D1452L)
  5825.  
  5826. //
  5827. // MessageId: NS_E_UNSUPPORTED_LOAD_TYPE
  5828. //
  5829. // MessageText:
  5830. //
  5831. //  The plug-in does not support the specified load type.%0
  5832. //
  5833. #define NS_E_UNSUPPORTED_LOAD_TYPE       _HRESULT_TYPEDEF_(0xC00D1453L)
  5834.  
  5835. //
  5836. // MessageId: NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION
  5837. //
  5838. // MessageText:
  5839. //
  5840. //  The plug-in does not support any load types. The plug-in must support at least one load type.%0
  5841. //
  5842. #define NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION _HRESULT_TYPEDEF_(0xC00D1454L)
  5843.  
  5844. //
  5845. // MessageId: NS_E_INVALID_PUBLISHING_POINT_NAME
  5846. //
  5847. // MessageText:
  5848. //
  5849. //  The publishing point name is invalid.%0
  5850. //
  5851. #define NS_E_INVALID_PUBLISHING_POINT_NAME _HRESULT_TYPEDEF_(0xC00D1455L)
  5852.  
  5853. //
  5854. // MessageId: NS_E_TOO_MANY_MULTICAST_SINKS
  5855. //
  5856. // MessageText:
  5857. //
  5858. //  Only one multicast data writer plug-in can be enabled for a publishing point.%0
  5859. //
  5860. #define NS_E_TOO_MANY_MULTICAST_SINKS    _HRESULT_TYPEDEF_(0xC00D1456L)
  5861.  
  5862. //
  5863. // MessageId: NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED
  5864. //
  5865. // MessageText:
  5866. //
  5867. //  The requested operation cannot be completed while the publishing point is started.%0
  5868. //
  5869. #define NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED _HRESULT_TYPEDEF_(0xC00D1457L)
  5870.  
  5871. //
  5872. // MessageId: NS_E_MULTICAST_PLUGIN_NOT_ENABLED
  5873. //
  5874. // MessageText:
  5875. //
  5876. //  A multicast data writer plug-in must be enabled in order for this operation to be completed.%0
  5877. //
  5878. #define NS_E_MULTICAST_PLUGIN_NOT_ENABLED _HRESULT_TYPEDEF_(0xC00D1458L)
  5879.  
  5880. //
  5881. // MessageId: NS_E_INVALID_OPERATING_SYSTEM_VERSION
  5882. //
  5883. // MessageText:
  5884. //
  5885. //  This feature requires Windows .NET Enterprise Server.%0
  5886. //
  5887. #define NS_E_INVALID_OPERATING_SYSTEM_VERSION _HRESULT_TYPEDEF_(0xC00D1459L)
  5888.  
  5889. //
  5890. // MessageId: NS_E_PUBLISHING_POINT_REMOVED
  5891. //
  5892. // MessageText:
  5893. //
  5894. //  The requested operation cannot be completed because the specified publishing point has been removed.%0
  5895. //
  5896. #define NS_E_PUBLISHING_POINT_REMOVED    _HRESULT_TYPEDEF_(0xC00D145AL)
  5897.  
  5898. //
  5899. // MessageId: NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST
  5900. //
  5901. // MessageText:
  5902. //
  5903. //  Push publishing points are started when the encoder starts pushing the stream. This publishing point cannot be started by the server administrator.%0
  5904. //
  5905. #define NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST _HRESULT_TYPEDEF_(0xC00D145BL)
  5906.  
  5907. //
  5908. // MessageId: NS_E_UNSUPPORTED_LANGUAGE
  5909. //
  5910. // MessageText:
  5911. //
  5912. //  The specified language is not supported.%0
  5913. //
  5914. #define NS_E_UNSUPPORTED_LANGUAGE        _HRESULT_TYPEDEF_(0xC00D145CL)
  5915.  
  5916. //
  5917. // MessageId: NS_E_WRONG_OS_VERSION
  5918. //
  5919. // MessageText:
  5920. //
  5921. //  Windows Media Services will only run on Windows .NET Server and Windows .NET Enterprise Server.%0
  5922. //
  5923. #define NS_E_WRONG_OS_VERSION            _HRESULT_TYPEDEF_(0xC00D145DL)
  5924.  
  5925. //
  5926. // MessageId: NS_E_PUBLISHING_POINT_STOPPED
  5927. //
  5928. // MessageText:
  5929. //
  5930. //  The operation cannot be completed because the publishing point has been stopped.%0
  5931. //
  5932. #define NS_E_PUBLISHING_POINT_STOPPED    _HRESULT_TYPEDEF_(0xC00D145EL)
  5933.  
  5934.  
  5935. // Playlist Errors 5300-5399
  5936.  
  5937. //
  5938. // MessageId: NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING
  5939. //
  5940. // MessageText:
  5941. //
  5942. //  The playlist entry is already playing.%0
  5943. //
  5944. #define NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING _HRESULT_TYPEDEF_(0xC00D14B4L)
  5945.  
  5946. //
  5947. // MessageId: NS_E_EMPTY_PLAYLIST
  5948. //
  5949. // MessageText:
  5950. //
  5951. //  The playlist or directory you are requesting does not contain content.%0
  5952. //
  5953. #define NS_E_EMPTY_PLAYLIST              _HRESULT_TYPEDEF_(0xC00D14B5L)
  5954.  
  5955. //
  5956. // MessageId: NS_E_PLAYLIST_PARSE_FAILURE
  5957. //
  5958. // MessageText:
  5959. //
  5960. //  The server was unable to parse the requested playlist file.%0
  5961. //
  5962. #define NS_E_PLAYLIST_PARSE_FAILURE      _HRESULT_TYPEDEF_(0xC00D14B6L)
  5963.  
  5964. //
  5965. // MessageId: NS_E_PLAYLIST_UNSUPPORTED_ENTRY
  5966. //
  5967. // MessageText:
  5968. //
  5969. //  The requested operation is not supported for this type of playlist entry.%0
  5970. //
  5971. #define NS_E_PLAYLIST_UNSUPPORTED_ENTRY  _HRESULT_TYPEDEF_(0xC00D14B7L)
  5972.  
  5973. //
  5974. // MessageId: NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST
  5975. //
  5976. // MessageText:
  5977. //
  5978. //  Cannot jump to a playlist entry that is not inserted in the playlist.%0
  5979. //
  5980. #define NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST _HRESULT_TYPEDEF_(0xC00D14B8L)
  5981.  
  5982. //
  5983. // MessageId: NS_E_PLAYLIST_ENTRY_SEEK
  5984. //
  5985. // MessageText:
  5986. //
  5987. //  Cannot seek to the desired playlist entry.%0
  5988. //
  5989. #define NS_E_PLAYLIST_ENTRY_SEEK         _HRESULT_TYPEDEF_(0xC00D14B9L)
  5990.  
  5991. //
  5992. // MessageId: NS_E_PLAYLIST_RECURSIVE_PLAYLISTS
  5993. //
  5994. // MessageText:
  5995. //
  5996. //  Cannot play recursive playlist.%0
  5997. //
  5998. #define NS_E_PLAYLIST_RECURSIVE_PLAYLISTS _HRESULT_TYPEDEF_(0xC00D14BAL)
  5999.  
  6000. //
  6001. // MessageId: NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS
  6002. //
  6003. // MessageText:
  6004. //
  6005. //  The number of nested playlists exceeded the limit the server can handle.%0
  6006. //
  6007. #define NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS _HRESULT_TYPEDEF_(0xC00D14BBL)
  6008.  
  6009. //
  6010. // MessageId: NS_E_PLAYLIST_SHUTDOWN
  6011. //
  6012. // MessageText:
  6013. //
  6014. //  Cannot execute the requested operation because the playlist has been shut down by the Media Server.%0
  6015. //
  6016. #define NS_E_PLAYLIST_SHUTDOWN           _HRESULT_TYPEDEF_(0xC00D14BCL)
  6017.  
  6018. //
  6019. // MessageId: NS_E_PLAYLIST_END_RECEDING
  6020. //
  6021. // MessageText:
  6022. //
  6023. //  The playlist has ended while receding.%0
  6024. //
  6025. #define NS_E_PLAYLIST_END_RECEDING       _HRESULT_TYPEDEF_(0xC00D14BDL)
  6026.  
  6027. //
  6028. // MessageId: NS_I_PLAYLIST_CHANGE_RECEDING
  6029. //
  6030. // MessageText:
  6031. //
  6032. //  The playlist change occurred while receding.%0
  6033. //
  6034. #define NS_I_PLAYLIST_CHANGE_RECEDING    _HRESULT_TYPEDEF_(0x400D14BEL)
  6035.  
  6036.  
  6037. // Datapath Errors -- 5400 - 5499
  6038.  
  6039. //
  6040. // MessageId: NS_E_DATAPATH_NO_SINK
  6041. //
  6042. // MessageText:
  6043. //
  6044. //  The data path does not have an associated data writer plug-in.%0
  6045. //
  6046. #define NS_E_DATAPATH_NO_SINK            _HRESULT_TYPEDEF_(0xC00D1518L)
  6047.  
  6048. //
  6049. // MessageId: NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS
  6050. //
  6051. // MessageText:
  6052. //
  6053. //  The publishing point successfully started, but one or more of the requested data writer plug-ins failed.%0
  6054. //
  6055. #define NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS _HRESULT_TYPEDEF_(0x000D1519L)
  6056.  
  6057. //
  6058. // MessageId: NS_E_INVALID_PUSH_TEMPLATE
  6059. //
  6060. // MessageText:
  6061. //
  6062. //  The specified push template is invalid.%0
  6063. //
  6064. #define NS_E_INVALID_PUSH_TEMPLATE       _HRESULT_TYPEDEF_(0xC00D151AL)
  6065.  
  6066. //
  6067. // MessageId: NS_E_INVALID_PUSH_PUBLISHING_POINT
  6068. //
  6069. // MessageText:
  6070. //
  6071. //  The specified push publishing point is invalid.%0
  6072. //
  6073. #define NS_E_INVALID_PUSH_PUBLISHING_POINT _HRESULT_TYPEDEF_(0xC00D151BL)
  6074.  
  6075. //
  6076. // MessageId: NS_E_CRITICAL_ERROR
  6077. //
  6078. // MessageText:
  6079. //
  6080. //  The requested operation cannot be performed because the server or publishing point is in a critical error state.%0
  6081. //
  6082. #define NS_E_CRITICAL_ERROR              _HRESULT_TYPEDEF_(0xC00D151CL)
  6083.  
  6084. //
  6085. // MessageId: NS_E_NO_NEW_CONNECTIONS
  6086. //
  6087. // MessageText:
  6088. //
  6089. //  The content can not be played because the server is not currently accepting connections. Try connecting at a later time.%0
  6090. //
  6091. #define NS_E_NO_NEW_CONNECTIONS          _HRESULT_TYPEDEF_(0xC00D151DL)
  6092.  
  6093. //
  6094. // MessageId: NS_E_WSX_INVALID_VERSION
  6095. //
  6096. // MessageText:
  6097. //
  6098. //  The version of this playlist is not supported by the server.%0
  6099. //
  6100. #define NS_E_WSX_INVALID_VERSION         _HRESULT_TYPEDEF_(0xC00D151EL)
  6101.  
  6102. //
  6103. // MessageId: NS_E_HEADER_MISMATCH
  6104. //
  6105. // MessageText:
  6106. //
  6107. //  The command does not apply to the current media header user by a server component.%0
  6108. //
  6109. #define NS_E_HEADER_MISMATCH             _HRESULT_TYPEDEF_(0xC00D151FL)
  6110.  
  6111. //
  6112. // MessageId: NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME
  6113. //
  6114. // MessageText:
  6115. //
  6116. //  The specified publishing point name is already in use.%0
  6117. //
  6118. #define NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME _HRESULT_TYPEDEF_(0xC00D1520L)
  6119.  
  6120.  
  6121. // Plugin Errors -- 5500 - 5599
  6122.  
  6123. //
  6124. // MessageId: NS_E_NO_SCRIPT_ENGINE
  6125. //
  6126. // MessageText:
  6127. //
  6128. //  There is no script engine available for this file.%0
  6129. //
  6130. #define NS_E_NO_SCRIPT_ENGINE            _HRESULT_TYPEDEF_(0xC00D157CL)
  6131.  
  6132. //
  6133. // MessageId: NS_E_PLUGIN_ERROR_REPORTED
  6134. //
  6135. // MessageText:
  6136. //
  6137. //  The plug-in has reported an error. See the Troubleshooting tab or the NT Application Event Log for details.%0
  6138. //
  6139. #define NS_E_PLUGIN_ERROR_REPORTED       _HRESULT_TYPEDEF_(0xC00D157DL)
  6140.  
  6141. //
  6142. // MessageId: NS_E_SOURCE_PLUGIN_NOT_FOUND
  6143. //
  6144. // MessageText:
  6145. //
  6146. //  No enabled data source plug-in is available to access the requested content.%0
  6147. //
  6148. #define NS_E_SOURCE_PLUGIN_NOT_FOUND     _HRESULT_TYPEDEF_(0xC00D157EL)
  6149.  
  6150. //
  6151. // MessageId: NS_E_PLAYLIST_PLUGIN_NOT_FOUND
  6152. //
  6153. // MessageText:
  6154. //
  6155. //  No enabled playlist parser plug-in is available to access the requested content.%0
  6156. //
  6157. #define NS_E_PLAYLIST_PLUGIN_NOT_FOUND   _HRESULT_TYPEDEF_(0xC00D157FL)
  6158.  
  6159. //
  6160. // MessageId: NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED
  6161. //
  6162. // MessageText:
  6163. //
  6164. //  The data source plug-in does not support enumeration.%0
  6165. //
  6166. #define NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D1580L)
  6167.  
  6168. //
  6169. // MessageId: NS_E_MEDIA_PARSER_INVALID_FORMAT
  6170. //
  6171. // MessageText:
  6172. //
  6173. //  The server cannot stream the selected file because it is either damaged or corrupt. Select a different file.%0
  6174. //
  6175. #define NS_E_MEDIA_PARSER_INVALID_FORMAT _HRESULT_TYPEDEF_(0xC00D1581L)
  6176.  
  6177. //
  6178. // MessageId: NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED
  6179. //
  6180. // MessageText:
  6181. //
  6182. //  The plug-in cannot be enabled because a compatible script debugger is not installed on this system.  Install a script debugger, or disable the script debugger option on the general tab of the plug-in's properties page and try again.%0
  6183. //
  6184. #define NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED _HRESULT_TYPEDEF_(0xC00D1582L)
  6185.  
  6186. //
  6187. // MessageId: NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER
  6188. //
  6189. // MessageText:
  6190. //
  6191. //  The plug-in cannot be loaded because it requires Windows .NET Enterprise Server.%0
  6192. //
  6193. #define NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER _HRESULT_TYPEDEF_(0xC00D1583L)
  6194.  
  6195. //
  6196. // MessageId: NS_E_WIZARD_RUNNING
  6197. //
  6198. // MessageText:
  6199. //
  6200. //  Another wizard is currently running. Please close the other wizard or wait until it finishes before attempting to run this wizard again.%0
  6201. //
  6202. #define NS_E_WIZARD_RUNNING              _HRESULT_TYPEDEF_(0xC00D1584L)
  6203.  
  6204. //
  6205. // MessageId: NS_E_INVALID_LOG_URL
  6206. //
  6207. // MessageText:
  6208. //
  6209. //  Invalid log URL. Multicast logging URL must look like "http://servername/isapibackend.dll" .%0
  6210. //
  6211. #define NS_E_INVALID_LOG_URL             _HRESULT_TYPEDEF_(0xC00D1585L)
  6212.  
  6213. //
  6214. // MessageId: NS_E_INVALID_MTU_RANGE
  6215. //
  6216. // MessageText:
  6217. //
  6218. //  Invalid MTU specified. The valid range for maximum packet size is between 36  and 65507 bytes .%0
  6219. //
  6220. #define NS_E_INVALID_MTU_RANGE           _HRESULT_TYPEDEF_(0xC00D1586L)
  6221.  
  6222. //
  6223. // MessageId: NS_E_INVALID_PLAY_STATISTICS
  6224. //
  6225. // MessageText:
  6226. //
  6227. //  Invalid play statistics for logging .%0
  6228. //
  6229. #define NS_E_INVALID_PLAY_STATISTICS     _HRESULT_TYPEDEF_(0xC00D1587L)
  6230.  
  6231. //
  6232. // MessageId: NS_E_LOG_NEED_TO_BE_SKIPPED
  6233. //
  6234. // MessageText:
  6235. //
  6236. //  The log needs to be skipped .%0
  6237. //
  6238. #define NS_E_LOG_NEED_TO_BE_SKIPPED      _HRESULT_TYPEDEF_(0xC00D1588L)
  6239.  
  6240. //
  6241. // MessageId: NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED
  6242. //
  6243. // MessageText:
  6244. //
  6245. //  The size of the data exceeded the limit the WMS HTTP Download Data Source plugin can handle.%0
  6246. //
  6247. #define NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED _HRESULT_TYPEDEF_(0xC00D1589L)
  6248.  
  6249. //
  6250. // MessageId: NS_E_PORT_IN_USE
  6251. //
  6252. // MessageText:
  6253. //
  6254. //  One usage of each socket address (protocol/network address/port) is permitted. Verify that other services or applications are not attempting to use the same port and then try to enable the plug-in again.%0
  6255. //
  6256. #define NS_E_PORT_IN_USE                 _HRESULT_TYPEDEF_(0xC00D158AL)
  6257.  
  6258. //
  6259. // MessageId: NS_E_PORT_IN_USE_HTTP
  6260. //
  6261. // MessageText:
  6262. //
  6263. //  One usage of each socket address (protocol/network address/port) is permitted. Verify that other services (such as IIS) or applications are not attempting to use the same port and then try to enable the plug-in again.%0
  6264. //
  6265. #define NS_E_PORT_IN_USE_HTTP            _HRESULT_TYPEDEF_(0xC00D158BL)
  6266.  
  6267. //
  6268. // MessageId: NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE
  6269. //
  6270. // MessageText:
  6271. //
  6272. //  The WMS HTTP Download Data Source plugin was unable to receive the remote server's response.%0
  6273. //
  6274. #define NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE _HRESULT_TYPEDEF_(0xC00D158CL)
  6275.  
  6276. //
  6277. // MessageId: NS_E_ARCHIVE_REACH_QUOTA
  6278. //
  6279. // MessageText:
  6280. //
  6281. //  The archive plug-in has reached its quota.%0
  6282. //
  6283. #define NS_E_ARCHIVE_REACH_QUOTA         _HRESULT_TYPEDEF_(0xC00D158DL)
  6284.  
  6285. //
  6286. // MessageId: NS_E_ARCHIVE_ABORT_DUE_TO_BCAST
  6287. //
  6288. // MessageText:
  6289. //
  6290. //  The archive plug-in aborted because the source was from broadcast.%0
  6291. //
  6292. #define NS_E_ARCHIVE_ABORT_DUE_TO_BCAST  _HRESULT_TYPEDEF_(0xC00D158EL)
  6293.  
  6294. //
  6295. // MessageId: NS_E_ARCHIVE_GAP_DETECTED
  6296. //
  6297. // MessageText:
  6298. //
  6299. //  The archive plug-in detected an interrupt in the source.%0
  6300. //
  6301. #define NS_E_ARCHIVE_GAP_DETECTED        _HRESULT_TYPEDEF_(0xC00D158FL)
  6302.  
  6303.  
  6304.  
  6305. /////////////////////////////////////////////////////////////////////////
  6306. //
  6307. // Windows Media Tools Errors
  6308. //
  6309. // IdRange = 7000 - 7999
  6310. //
  6311. /////////////////////////////////////////////////////////////////////////
  6312.  
  6313. //
  6314. // MessageId: NS_E_BAD_MARKIN
  6315. //
  6316. // MessageText:
  6317. //
  6318. //  The mark-in time should be greater than 0 and less than the mark-out time.%0
  6319. //
  6320. #define NS_E_BAD_MARKIN                  _HRESULT_TYPEDEF_(0xC00D1B58L)
  6321.  
  6322. //
  6323. // MessageId: NS_E_BAD_MARKOUT
  6324. //
  6325. // MessageText:
  6326. //
  6327. //  The mark-out time should be greater than the mark-in time and less than the file duration.%0
  6328. //
  6329. #define NS_E_BAD_MARKOUT                 _HRESULT_TYPEDEF_(0xC00D1B59L)
  6330.  
  6331. //
  6332. // MessageId: NS_E_NOMATCHING_MEDIASOURCE
  6333. //
  6334. // MessageText:
  6335. //
  6336. //  No matching media type is found in the source %1.%0
  6337. //
  6338. #define NS_E_NOMATCHING_MEDIASOURCE      _HRESULT_TYPEDEF_(0xC00D1B5AL)
  6339.  
  6340. //
  6341. // MessageId: NS_E_UNSUPPORTED_SOURCETYPE
  6342. //
  6343. // MessageText:
  6344. //
  6345. //  The specified source type is not supported.%0
  6346. //
  6347. #define NS_E_UNSUPPORTED_SOURCETYPE      _HRESULT_TYPEDEF_(0xC00D1B5BL)
  6348.  
  6349. //
  6350. // MessageId: NS_E_TOO_MANY_AUDIO
  6351. //
  6352. // MessageText:
  6353. //
  6354. //  It is not possible to specify more than one audio input.%0
  6355. //
  6356. #define NS_E_TOO_MANY_AUDIO              _HRESULT_TYPEDEF_(0xC00D1B5CL)
  6357.  
  6358. //
  6359. // MessageId: NS_E_TOO_MANY_VIDEO
  6360. //
  6361. // MessageText:
  6362. //
  6363. //  It is not possible to specify more than two video inputs.%0
  6364. //
  6365. #define NS_E_TOO_MANY_VIDEO              _HRESULT_TYPEDEF_(0xC00D1B5DL)
  6366.  
  6367. //
  6368. // MessageId: NS_E_NOMATCHING_ELEMENT
  6369. //
  6370. // MessageText:
  6371. //
  6372. //  No matching element is found in the list.%0
  6373. //
  6374. #define NS_E_NOMATCHING_ELEMENT          _HRESULT_TYPEDEF_(0xC00D1B5EL)
  6375.  
  6376. //
  6377. // MessageId: NS_E_MISMATCHED_MEDIACONTENT
  6378. //
  6379. // MessageText:
  6380. //
  6381. //  The profile's media types must match the media types defined for the session.%0
  6382. //
  6383. #define NS_E_MISMATCHED_MEDIACONTENT     _HRESULT_TYPEDEF_(0xC00D1B5FL)
  6384.  
  6385. //
  6386. // MessageId: NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP
  6387. //
  6388. // MessageText:
  6389. //
  6390. //  It is not possible to remove an active source while encoding.%0
  6391. //
  6392. #define NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP _HRESULT_TYPEDEF_(0xC00D1B60L)
  6393.  
  6394. //
  6395. // MessageId: NS_E_AUDIODEVICE_BUSY
  6396. //
  6397. // MessageText:
  6398. //
  6399. //  It is not possible to open the specified audio capture device because it is currently in use.%0
  6400. //
  6401. #define NS_E_AUDIODEVICE_BUSY            _HRESULT_TYPEDEF_(0xC00D1B61L)
  6402.  
  6403. //
  6404. // MessageId: NS_E_AUDIODEVICE_UNEXPECTED
  6405. //
  6406. // MessageText:
  6407. //
  6408. //  It is not possible to open the specified audio capture device because an unexpected error has occurred.%0
  6409. //
  6410. #define NS_E_AUDIODEVICE_UNEXPECTED      _HRESULT_TYPEDEF_(0xC00D1B62L)
  6411.  
  6412. //
  6413. // MessageId: NS_E_AUDIODEVICE_BADFORMAT
  6414. //
  6415. // MessageText:
  6416. //
  6417. //  The audio capture device does not support the specified audio format.%0
  6418. //
  6419. #define NS_E_AUDIODEVICE_BADFORMAT       _HRESULT_TYPEDEF_(0xC00D1B63L)
  6420.  
  6421. //
  6422. // MessageId: NS_E_VIDEODEVICE_BUSY
  6423. //
  6424. // MessageText:
  6425. //
  6426. //  It is not possible to open the specified video capture device because it is currently in use.%0
  6427. //
  6428. #define NS_E_VIDEODEVICE_BUSY            _HRESULT_TYPEDEF_(0xC00D1B64L)
  6429.  
  6430. //
  6431. // MessageId: NS_E_VIDEODEVICE_UNEXPECTED
  6432. //
  6433. // MessageText:
  6434. //
  6435. //  It is not possible to open the specified video capture device because an unexpected error has occurred.%0
  6436. //
  6437. #define NS_E_VIDEODEVICE_UNEXPECTED      _HRESULT_TYPEDEF_(0xC00D1B65L)
  6438.  
  6439. //
  6440. // MessageId: NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING
  6441. //
  6442. // MessageText:
  6443. //
  6444. //  This operation is not allowed while encoding.%0
  6445. //
  6446. #define NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING _HRESULT_TYPEDEF_(0xC00D1B66L)
  6447.  
  6448. //
  6449. // MessageId: NS_E_NO_PROFILE_IN_SOURCEGROUP
  6450. //
  6451. // MessageText:
  6452. //
  6453. //  No profile is set for the source.%0
  6454. //
  6455. #define NS_E_NO_PROFILE_IN_SOURCEGROUP   _HRESULT_TYPEDEF_(0xC00D1B67L)
  6456.  
  6457. //
  6458. // MessageId: NS_E_VIDEODRIVER_UNSTABLE
  6459. //
  6460. // MessageText:
  6461. //
  6462. //  The video capture driver returned an unrecoverable error.  It is now in an unstable state.%0
  6463. //
  6464. #define NS_E_VIDEODRIVER_UNSTABLE        _HRESULT_TYPEDEF_(0xC00D1B68L)
  6465.  
  6466. //
  6467. // MessageId: NS_E_VIDCAPSTARTFAILED
  6468. //
  6469. // MessageText:
  6470. //
  6471. //  It was not possible to start the video device.%0
  6472. //
  6473. #define NS_E_VIDCAPSTARTFAILED           _HRESULT_TYPEDEF_(0xC00D1B69L)
  6474.  
  6475. //
  6476. // MessageId: NS_E_VIDSOURCECOMPRESSION
  6477. //
  6478. // MessageText:
  6479. //
  6480. //  The video source does not support the requested output format or color depth.%0
  6481. //
  6482. #define NS_E_VIDSOURCECOMPRESSION        _HRESULT_TYPEDEF_(0xC00D1B6AL)
  6483.  
  6484. //
  6485. // MessageId: NS_E_VIDSOURCESIZE
  6486. //
  6487. // MessageText:
  6488. //
  6489. //  The video source does not support the requested capture size.%0
  6490. //
  6491. #define NS_E_VIDSOURCESIZE               _HRESULT_TYPEDEF_(0xC00D1B6BL)
  6492.  
  6493. //
  6494. // MessageId: NS_E_ICMQUERYFORMAT
  6495. //
  6496. // MessageText:
  6497. //
  6498. //  It was not possible to obtain output information from the video compressor.%0
  6499. //
  6500. #define NS_E_ICMQUERYFORMAT              _HRESULT_TYPEDEF_(0xC00D1B6CL)
  6501.  
  6502. //
  6503. // MessageId: NS_E_VIDCAPCREATEWINDOW
  6504. //
  6505. // MessageText:
  6506. //
  6507. //  It was not possible to create a video capture window.%0
  6508. //
  6509. #define NS_E_VIDCAPCREATEWINDOW          _HRESULT_TYPEDEF_(0xC00D1B6DL)
  6510.  
  6511. //
  6512. // MessageId: NS_E_VIDCAPDRVINUSE
  6513. //
  6514. // MessageText:
  6515. //
  6516. //  There is already a stream active on this video device.%0
  6517. //
  6518. #define NS_E_VIDCAPDRVINUSE              _HRESULT_TYPEDEF_(0xC00D1B6EL)
  6519.  
  6520. //
  6521. // MessageId: NS_E_NO_MEDIAFORMAT_IN_SOURCE
  6522. //
  6523. // MessageText:
  6524. //
  6525. //  No media format is set in source.%0
  6526. //
  6527. #define NS_E_NO_MEDIAFORMAT_IN_SOURCE    _HRESULT_TYPEDEF_(0xC00D1B6FL)
  6528.  
  6529. //
  6530. // MessageId: NS_E_NO_VALID_OUTPUT_STREAM
  6531. //
  6532. // MessageText:
  6533. //
  6534. //  Cannot find a valid output stream from the source.%0
  6535. //
  6536. #define NS_E_NO_VALID_OUTPUT_STREAM      _HRESULT_TYPEDEF_(0xC00D1B70L)
  6537.  
  6538. //
  6539. // MessageId: NS_E_NO_VALID_SOURCE_PLUGIN
  6540. //
  6541. // MessageText:
  6542. //
  6543. //  It was not possible to find a valid source plug-in for the specified source.%0
  6544. //
  6545. #define NS_E_NO_VALID_SOURCE_PLUGIN      _HRESULT_TYPEDEF_(0xC00D1B71L)
  6546.  
  6547. //
  6548. // MessageId: NS_E_NO_ACTIVE_SOURCEGROUP
  6549. //
  6550. // MessageText:
  6551. //
  6552. //  No source is currently active.%0
  6553. //
  6554. #define NS_E_NO_ACTIVE_SOURCEGROUP       _HRESULT_TYPEDEF_(0xC00D1B72L)
  6555.  
  6556. //
  6557. // MessageId: NS_E_NO_SCRIPT_STREAM
  6558. //
  6559. // MessageText:
  6560. //
  6561. //  No script stream is set in the current source.%0
  6562. //
  6563. #define NS_E_NO_SCRIPT_STREAM            _HRESULT_TYPEDEF_(0xC00D1B73L)
  6564.  
  6565. //
  6566. // MessageId: NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING
  6567. //
  6568. // MessageText:
  6569. //
  6570. //  This operation is not allowed while archiving.%0
  6571. //
  6572. #define NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING _HRESULT_TYPEDEF_(0xC00D1B74L)
  6573.  
  6574. //
  6575. // MessageId: NS_E_INVALIDPACKETSIZE
  6576. //
  6577. // MessageText:
  6578. //
  6579. //  The setting for the maximum packet size is not valid.%0
  6580. //
  6581. #define NS_E_INVALIDPACKETSIZE           _HRESULT_TYPEDEF_(0xC00D1B75L)
  6582.  
  6583. //
  6584. // MessageId: NS_E_PLUGIN_CLSID_INVALID
  6585. //
  6586. // MessageText:
  6587. //
  6588. //  The plug-in CLSID specified is not valid.%0
  6589. //
  6590. #define NS_E_PLUGIN_CLSID_INVALID        _HRESULT_TYPEDEF_(0xC00D1B76L)
  6591.  
  6592. //
  6593. // MessageId: NS_E_UNSUPPORTED_ARCHIVETYPE
  6594. //
  6595. // MessageText:
  6596. //
  6597. //  This archive type is not supported.%0
  6598. //
  6599. #define NS_E_UNSUPPORTED_ARCHIVETYPE     _HRESULT_TYPEDEF_(0xC00D1B77L)
  6600.  
  6601. //
  6602. // MessageId: NS_E_UNSUPPORTED_ARCHIVEOPERATION
  6603. //
  6604. // MessageText:
  6605. //
  6606. //  This archive operation is not supported.%0
  6607. //
  6608. #define NS_E_UNSUPPORTED_ARCHIVEOPERATION _HRESULT_TYPEDEF_(0xC00D1B78L)
  6609.  
  6610. //
  6611. // MessageId: NS_E_ARCHIVE_FILENAME_NOTSET
  6612. //
  6613. // MessageText:
  6614. //
  6615. //  The local archive file name was not set.%0
  6616. //
  6617. #define NS_E_ARCHIVE_FILENAME_NOTSET     _HRESULT_TYPEDEF_(0xC00D1B79L)
  6618.  
  6619. //
  6620. // MessageId: NS_E_SOURCEGROUP_NOTPREPARED
  6621. //
  6622. // MessageText:
  6623. //
  6624. //  The source is not yet prepared.%0
  6625. //
  6626. #define NS_E_SOURCEGROUP_NOTPREPARED     _HRESULT_TYPEDEF_(0xC00D1B7AL)
  6627.  
  6628. //
  6629. // MessageId: NS_E_PROFILE_MISMATCH
  6630. //
  6631. // MessageText:
  6632. //
  6633. //  Profiles on the sources do not match.%0
  6634. //
  6635. #define NS_E_PROFILE_MISMATCH            _HRESULT_TYPEDEF_(0xC00D1B7BL)
  6636.  
  6637. //
  6638. // MessageId: NS_E_INCORRECTCLIPSETTINGS
  6639. //
  6640. // MessageText:
  6641. //
  6642. //  The specified crop values are not valid.%0
  6643. //
  6644. #define NS_E_INCORRECTCLIPSETTINGS       _HRESULT_TYPEDEF_(0xC00D1B7CL)
  6645.  
  6646. //
  6647. // MessageId: NS_E_NOSTATSAVAILABLE
  6648. //
  6649. // MessageText:
  6650. //
  6651. //  No statistics are available at this time.%0
  6652. //
  6653. #define NS_E_NOSTATSAVAILABLE            _HRESULT_TYPEDEF_(0xC00D1B7DL)
  6654.  
  6655. //
  6656. // MessageId: NS_E_NOTARCHIVING
  6657. //
  6658. // MessageText:
  6659. //
  6660. //  The encoder is not archiving.%0
  6661. //
  6662. #define NS_E_NOTARCHIVING                _HRESULT_TYPEDEF_(0xC00D1B7EL)
  6663.  
  6664. //
  6665. // MessageId: NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED
  6666. //
  6667. // MessageText:
  6668. //
  6669. //  This operation is only allowed during encoding.%0
  6670. //
  6671. #define NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED _HRESULT_TYPEDEF_(0xC00D1B7FL)
  6672.  
  6673. //
  6674. // MessageId: NS_E_NOSOURCEGROUPS
  6675. //
  6676. // MessageText:
  6677. //
  6678. //  This SourceGroupCollection doesn't contain any SourceGroups.%0
  6679. //
  6680. #define NS_E_NOSOURCEGROUPS              _HRESULT_TYPEDEF_(0xC00D1B80L)
  6681.  
  6682. //
  6683. // MessageId: NS_E_INVALIDINPUTFPS
  6684. //
  6685. // MessageText:
  6686. //
  6687. //  This source does not have a frame rate of 30 fps. Therefore, it is not possible to apply the inverse telecine filter to the source.%0
  6688. //
  6689. #define NS_E_INVALIDINPUTFPS             _HRESULT_TYPEDEF_(0xC00D1B81L)
  6690.  
  6691. //
  6692. // MessageId: NS_E_NO_DATAVIEW_SUPPORT
  6693. //
  6694. // MessageText:
  6695. //
  6696. //  It is not possible to display your source or output video in the Video panel.%0
  6697. //
  6698. #define NS_E_NO_DATAVIEW_SUPPORT         _HRESULT_TYPEDEF_(0xC00D1B82L)
  6699.  
  6700. //
  6701. // MessageId: NS_E_CODEC_UNAVAILABLE
  6702. //
  6703. // MessageText:
  6704. //
  6705. //  One or more codecs required to open this content could not be found.%0
  6706. //
  6707. #define NS_E_CODEC_UNAVAILABLE           _HRESULT_TYPEDEF_(0xC00D1B83L)
  6708.  
  6709. //
  6710. // MessageId: NS_E_ARCHIVE_SAME_AS_INPUT
  6711. //
  6712. // MessageText:
  6713. //
  6714. //  The archive file has the same name as an input file. Change one of the names before continuing.%0
  6715. //
  6716. #define NS_E_ARCHIVE_SAME_AS_INPUT       _HRESULT_TYPEDEF_(0xC00D1B84L)
  6717.  
  6718. //
  6719. // MessageId: NS_E_SOURCE_NOTSPECIFIED
  6720. //
  6721. // MessageText:
  6722. //
  6723. //  The source has not been set up completely.%0
  6724. //
  6725. #define NS_E_SOURCE_NOTSPECIFIED         _HRESULT_TYPEDEF_(0xC00D1B85L)
  6726.  
  6727. //
  6728. // MessageId: NS_E_NO_REALTIME_TIMECOMPRESSION
  6729. //
  6730. // MessageText:
  6731. //
  6732. //  It is not possible to apply time compression to a broadcast session.%0
  6733. //
  6734. #define NS_E_NO_REALTIME_TIMECOMPRESSION _HRESULT_TYPEDEF_(0xC00D1B86L)
  6735.  
  6736. //
  6737. // MessageId: NS_E_UNSUPPORTED_ENCODER_DEVICE
  6738. //
  6739. // MessageText:
  6740. //
  6741. //  It is not possible to open this device.%0
  6742. //
  6743. #define NS_E_UNSUPPORTED_ENCODER_DEVICE  _HRESULT_TYPEDEF_(0xC00D1B87L)
  6744.  
  6745. //
  6746. // MessageId: NS_E_UNEXPECTED_DISPLAY_SETTINGS
  6747. //
  6748. // MessageText:
  6749. //
  6750. //  It is not possible to start encoding because the display size or color has changed since the current session was defined. Restore the previous settings or create a new session.%0
  6751. //
  6752. #define NS_E_UNEXPECTED_DISPLAY_SETTINGS _HRESULT_TYPEDEF_(0xC00D1B88L)
  6753.  
  6754. //
  6755. // MessageId: NS_E_NO_AUDIODATA
  6756. //
  6757. // MessageText:
  6758. //
  6759. //  No audio data has been received for several seconds. Check the audio source and restart the encoder.%0
  6760. //
  6761. #define NS_E_NO_AUDIODATA                _HRESULT_TYPEDEF_(0xC00D1B89L)
  6762.  
  6763. //
  6764. // MessageId: NS_E_INPUTSOURCE_PROBLEM
  6765. //
  6766. // MessageText:
  6767. //
  6768. //  One or all of the specified sources are not working properly. Check that the sources are configured correctly.%0
  6769. //
  6770. #define NS_E_INPUTSOURCE_PROBLEM         _HRESULT_TYPEDEF_(0xC00D1B8AL)
  6771.  
  6772. //
  6773. // MessageId: NS_E_WME_VERSION_MISMATCH
  6774. //
  6775. // MessageText:
  6776. //
  6777. //  The supplied configuration file is not supported by this version of the encoder.%0
  6778. //
  6779. #define NS_E_WME_VERSION_MISMATCH        _HRESULT_TYPEDEF_(0xC00D1B8BL)
  6780.  
  6781. //
  6782. // MessageId: NS_E_NO_REALTIME_PREPROCESS
  6783. //
  6784. // MessageText:
  6785. //
  6786. //  It is not possible to use image preprocessing with live encoding.%0
  6787. //
  6788. #define NS_E_NO_REALTIME_PREPROCESS      _HRESULT_TYPEDEF_(0xC00D1B8CL)
  6789.  
  6790. //
  6791. // MessageId: NS_E_NO_REPEAT_PREPROCESS
  6792. //
  6793. // MessageText:
  6794. //
  6795. //  It is not possible to use two-pass encoding when the source is set to loop.%0
  6796. //
  6797. #define NS_E_NO_REPEAT_PREPROCESS        _HRESULT_TYPEDEF_(0xC00D1B8DL)
  6798.  
  6799. //
  6800. // MessageId: NS_E_CANNOT_PAUSE_LIVEBROADCAST
  6801. //
  6802. // MessageText:
  6803. //
  6804. //  It is not possible to pause encoding during a broadcast.%0
  6805. //
  6806. #define NS_E_CANNOT_PAUSE_LIVEBROADCAST  _HRESULT_TYPEDEF_(0xC00D1B8EL)
  6807.  
  6808. //
  6809. // MessageId: NS_E_DRM_PROFILE_NOT_SET
  6810. //
  6811. // MessageText:
  6812. //
  6813. //  A DRM profile has not been set for the current session.%0
  6814. //
  6815. #define NS_E_DRM_PROFILE_NOT_SET         _HRESULT_TYPEDEF_(0xC00D1B8FL)
  6816.  
  6817. //
  6818. // MessageId: NS_E_DUPLICATE_DRMPROFILE
  6819. //
  6820. // MessageText:
  6821. //
  6822. //  The profile ID is already used by a DRM profile. Specify a different profile ID.%0
  6823. //
  6824. #define NS_E_DUPLICATE_DRMPROFILE        _HRESULT_TYPEDEF_(0xC00D1B90L)
  6825.  
  6826. //
  6827. // MessageId: NS_E_INVALID_DEVICE
  6828. //
  6829. // MessageText:
  6830. //
  6831. //  The setting of the selected device does not support control for playing back tapes.%0
  6832. //
  6833. #define NS_E_INVALID_DEVICE              _HRESULT_TYPEDEF_(0xC00D1B91L)
  6834.  
  6835. //
  6836. // MessageId: NS_E_SPEECHEDL_ON_NON_MIXEDMODE
  6837. //
  6838. // MessageText:
  6839. //
  6840. //  You must specify a mixed voice and audio mode in order to use an optimization definition file.%0
  6841. //
  6842. #define NS_E_SPEECHEDL_ON_NON_MIXEDMODE  _HRESULT_TYPEDEF_(0xC00D1B92L)
  6843.  
  6844. //
  6845. // MessageId: NS_E_DRM_PASSWORD_TOO_LONG
  6846. //
  6847. // MessageText:
  6848. //
  6849. //  The specified password is too long. Type a password with fewer than 8 characters.%0
  6850. //
  6851. #define NS_E_DRM_PASSWORD_TOO_LONG       _HRESULT_TYPEDEF_(0xC00D1B93L)
  6852.  
  6853. //
  6854. // MessageId: NS_E_DEVCONTROL_FAILED_SEEK
  6855. //
  6856. // MessageText:
  6857. //
  6858. //  It is not possible to seek to the specified mark-in point.%0
  6859. //
  6860. #define NS_E_DEVCONTROL_FAILED_SEEK      _HRESULT_TYPEDEF_(0xC00D1B94L)
  6861.  
  6862. //
  6863. // MessageId: NS_E_INTERLACE_REQUIRE_SAMESIZE
  6864. //
  6865. // MessageText:
  6866. //
  6867. //  When you choose to maintain the interlacing in your video, the output video size must match the input video size.%0
  6868. //
  6869. #define NS_E_INTERLACE_REQUIRE_SAMESIZE  _HRESULT_TYPEDEF_(0xC00D1B95L)
  6870.  
  6871. //
  6872. // MessageId: NS_E_TOO_MANY_DEVICECONTROL
  6873. //
  6874. // MessageText:
  6875. //
  6876. //  Only one device control plug-in can control a device.%0
  6877. //
  6878. #define NS_E_TOO_MANY_DEVICECONTROL      _HRESULT_TYPEDEF_(0xC00D1B96L)
  6879.  
  6880. //
  6881. // MessageId: NS_E_NO_MULTIPASS_FOR_LIVEDEVICE
  6882. //
  6883. // MessageText:
  6884. //
  6885. //  You must also enable storing content to hard disk temporarily in order to use two-pass encoding with the input device.%0
  6886. //
  6887. #define NS_E_NO_MULTIPASS_FOR_LIVEDEVICE _HRESULT_TYPEDEF_(0xC00D1B97L)
  6888.  
  6889. //
  6890. // MessageId: NS_E_MISSING_AUDIENCE
  6891. //
  6892. // MessageText:
  6893. //
  6894. //  An audience is missing from the output stream configuration.%0
  6895. //
  6896. #define NS_E_MISSING_AUDIENCE            _HRESULT_TYPEDEF_(0xC00D1B98L)
  6897.  
  6898. //
  6899. // MessageId: NS_E_AUDIENCE_CONTENTTYPE_MISMATCH
  6900. //
  6901. // MessageText:
  6902. //
  6903. //  All audiences in the output tree must have the same content type.%0
  6904. //
  6905. #define NS_E_AUDIENCE_CONTENTTYPE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1B99L)
  6906.  
  6907. //
  6908. // MessageId: NS_E_MISSING_SOURCE_INDEX
  6909. //
  6910. // MessageText:
  6911. //
  6912. //  A source index is missing from the output stream configuration.%0
  6913. //
  6914. #define NS_E_MISSING_SOURCE_INDEX        _HRESULT_TYPEDEF_(0xC00D1B9AL)
  6915.  
  6916. //
  6917. // MessageId: NS_E_NUM_LANGUAGE_MISMATCH
  6918. //
  6919. // MessageText:
  6920. //
  6921. //  The same source index in different audiences should have the same number of languages.%0
  6922. //
  6923. #define NS_E_NUM_LANGUAGE_MISMATCH       _HRESULT_TYPEDEF_(0xC00D1B9BL)
  6924.  
  6925. //
  6926. // MessageId: NS_E_LANGUAGE_MISMATCH
  6927. //
  6928. // MessageText:
  6929. //
  6930. //  The same source index in different audiences should have the same languages.%0
  6931. //
  6932. #define NS_E_LANGUAGE_MISMATCH           _HRESULT_TYPEDEF_(0xC00D1B9CL)
  6933.  
  6934. //
  6935. // MessageId: NS_E_VBRMODE_MISMATCH
  6936. //
  6937. // MessageText:
  6938. //
  6939. //  The same source index in different audiences should use the same VBR encoding mode.%0
  6940. //
  6941. #define NS_E_VBRMODE_MISMATCH            _HRESULT_TYPEDEF_(0xC00D1B9DL)
  6942.  
  6943. //
  6944. // MessageId: NS_E_INVALID_INPUT_AUDIENCE_INDEX
  6945. //
  6946. // MessageText:
  6947. //
  6948. //  The bit rate index specified is not valid.%0
  6949. //
  6950. #define NS_E_INVALID_INPUT_AUDIENCE_INDEX _HRESULT_TYPEDEF_(0xC00D1B9EL)
  6951.  
  6952. //
  6953. // MessageId: NS_E_INVALID_INPUT_LANGUAGE
  6954. //
  6955. // MessageText:
  6956. //
  6957. //  The specified language is not valid.%0
  6958. //
  6959. #define NS_E_INVALID_INPUT_LANGUAGE      _HRESULT_TYPEDEF_(0xC00D1B9FL)
  6960.  
  6961. //
  6962. // MessageId: NS_E_INVALID_INPUT_STREAM
  6963. //
  6964. // MessageText:
  6965. //
  6966. //  The specified source type is not valid.%0
  6967. //
  6968. #define NS_E_INVALID_INPUT_STREAM        _HRESULT_TYPEDEF_(0xC00D1BA0L)
  6969.  
  6970. //
  6971. // MessageId: NS_E_EXPECT_MONO_WAV_INPUT
  6972. //
  6973. // MessageText:
  6974. //
  6975. //  The source must be a mono channel .wav file.%0
  6976. //
  6977. #define NS_E_EXPECT_MONO_WAV_INPUT       _HRESULT_TYPEDEF_(0xC00D1BA1L)
  6978.  
  6979. //
  6980. // MessageId: NS_E_INPUT_WAVFORMAT_MISMATCH
  6981. //
  6982. // MessageText:
  6983. //
  6984. //  All the source .wav files must have the same format.%0
  6985. //
  6986. #define NS_E_INPUT_WAVFORMAT_MISMATCH    _HRESULT_TYPEDEF_(0xC00D1BA2L)
  6987.  
  6988. //
  6989. // MessageId: NS_E_RECORDQ_DISK_FULL
  6990. //
  6991. // MessageText:
  6992. //
  6993. //  The hard disk being used for temporary storage of content has reached the minimum allowed disk space. Create more space on the hard disk and restart encoding.%0
  6994. //
  6995. #define NS_E_RECORDQ_DISK_FULL           _HRESULT_TYPEDEF_(0xC00D1BA3L)
  6996.  
  6997. //
  6998. // MessageId: NS_E_NO_PAL_INVERSE_TELECINE
  6999. //
  7000. // MessageText:
  7001. //
  7002. //  It is not possible to apply the inverse telecine feature to PAL content.%0
  7003. //
  7004. #define NS_E_NO_PAL_INVERSE_TELECINE     _HRESULT_TYPEDEF_(0xC00D1BA4L)
  7005.  
  7006. //
  7007. // MessageId: NS_E_ACTIVE_SG_DEVICE_DISCONNECTED
  7008. //
  7009. // MessageText:
  7010. //
  7011. //  A capture device in the current active source is no longer available.%0
  7012. //
  7013. #define NS_E_ACTIVE_SG_DEVICE_DISCONNECTED _HRESULT_TYPEDEF_(0xC00D1BA5L)
  7014.  
  7015. //
  7016. // MessageId: NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED
  7017. //
  7018. // MessageText:
  7019. //
  7020. //  A device used in the current active source for device control is no longer available.%0
  7021. //
  7022. #define NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED _HRESULT_TYPEDEF_(0xC00D1BA6L)
  7023.  
  7024. //
  7025. // MessageId: NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER
  7026. //
  7027. // MessageText:
  7028. //
  7029. //  No frames have been submitted to the analyzer for analysis.%0
  7030. //
  7031. #define NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER _HRESULT_TYPEDEF_(0xC00D1BA7L)
  7032.  
  7033. //
  7034. // MessageId: NS_E_INPUT_DOESNOT_SUPPORT_SMPTE
  7035. //
  7036. // MessageText:
  7037. //
  7038. //  The source video does not support time codes.%0
  7039. //
  7040. #define NS_E_INPUT_DOESNOT_SUPPORT_SMPTE _HRESULT_TYPEDEF_(0xC00D1BA8L)
  7041.  
  7042. //
  7043. // MessageId: NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS
  7044. //
  7045. // MessageText:
  7046. //
  7047. //  It is not possible to generate a time code when there are multiple sources in a session.%0
  7048. //
  7049. #define NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS _HRESULT_TYPEDEF_(0xC00D1BA9L)
  7050.  
  7051. //
  7052. // MessageId: NS_E_BAD_CONTENTEDL
  7053. //
  7054. // MessageText:
  7055. //
  7056. //  The voice codec optimization definition file can not be found or is corrupted.%0
  7057. //
  7058. #define NS_E_BAD_CONTENTEDL              _HRESULT_TYPEDEF_(0xC00D1BAAL)
  7059.  
  7060. //
  7061. // MessageId: NS_E_INTERLACEMODE_MISMATCH
  7062. //
  7063. // MessageText:
  7064. //
  7065. //  The same source index in different audiences should have the same interlace mode.%0
  7066. //
  7067. #define NS_E_INTERLACEMODE_MISMATCH      _HRESULT_TYPEDEF_(0xC00D1BABL)
  7068.  
  7069. //
  7070. // MessageId: NS_E_NONSQUAREPIXELMODE_MISMATCH
  7071. //
  7072. // MessageText:
  7073. //
  7074. //  The same source index in different audiences should have the same nonsquare pixel mode.%0
  7075. //
  7076. #define NS_E_NONSQUAREPIXELMODE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BACL)
  7077.  
  7078. //
  7079. // MessageId: NS_E_SMPTEMODE_MISMATCH
  7080. //
  7081. // MessageText:
  7082. //
  7083. //  The same source index in different audiences should have the same time code mode.%0
  7084. //
  7085. #define NS_E_SMPTEMODE_MISMATCH          _HRESULT_TYPEDEF_(0xC00D1BADL)
  7086.  
  7087. //
  7088. // MessageId: NS_E_END_OF_TAPE
  7089. //
  7090. // MessageText:
  7091. //
  7092. //  Either the end of the tape has been reached or there is no tape. Check the device and tape.%0
  7093. //
  7094. #define NS_E_END_OF_TAPE                 _HRESULT_TYPEDEF_(0xC00D1BAEL)
  7095.  
  7096. //
  7097. // MessageId: NS_E_NO_MEDIA_IN_AUDIENCE
  7098. //
  7099. // MessageText:
  7100. //
  7101. //  No audio or video input has been specified.%0
  7102. //
  7103. #define NS_E_NO_MEDIA_IN_AUDIENCE        _HRESULT_TYPEDEF_(0xC00D1BAFL)
  7104.  
  7105. //
  7106. // MessageId: NS_E_NO_AUDIENCES
  7107. //
  7108. // MessageText:
  7109. //
  7110. //  The profile must contain a bit rate.%0
  7111. //
  7112. #define NS_E_NO_AUDIENCES                _HRESULT_TYPEDEF_(0xC00D1BB0L)
  7113.  
  7114. //
  7115. // MessageId: NS_E_NO_AUDIO_COMPAT
  7116. //
  7117. // MessageText:
  7118. //
  7119. //  You must specify at least one audio stream to be compatible with Windows Media Player 7.1.%0
  7120. //
  7121. #define NS_E_NO_AUDIO_COMPAT             _HRESULT_TYPEDEF_(0xC00D1BB1L)
  7122.  
  7123. //
  7124. // MessageId: NS_E_INVALID_VBR_COMPAT
  7125. //
  7126. // MessageText:
  7127. //
  7128. //  Using a VBR encoding mode is not compatible with Windows Media Player 7.1.%0
  7129. //
  7130. #define NS_E_INVALID_VBR_COMPAT          _HRESULT_TYPEDEF_(0xC00D1BB2L)
  7131.  
  7132. //
  7133. // MessageId: NS_E_NO_PROFILE_NAME
  7134. //
  7135. // MessageText:
  7136. //
  7137. //  You must specify a profile name.%0
  7138. //
  7139. #define NS_E_NO_PROFILE_NAME             _HRESULT_TYPEDEF_(0xC00D1BB3L)
  7140.  
  7141. //
  7142. // MessageId: NS_E_INVALID_VBR_WITH_UNCOMP
  7143. //
  7144. // MessageText:
  7145. //
  7146. //  It is not possible to use a VBR encoding mode with uncompressed audio or video.%0
  7147. //
  7148. #define NS_E_INVALID_VBR_WITH_UNCOMP     _HRESULT_TYPEDEF_(0xC00D1BB4L)
  7149.  
  7150. //
  7151. // MessageId: NS_E_MULTIPLE_VBR_AUDIENCES
  7152. //
  7153. // MessageText:
  7154. //
  7155. //  It is not possible to use MBR encoding with VBR encoding.%0
  7156. //
  7157. #define NS_E_MULTIPLE_VBR_AUDIENCES      _HRESULT_TYPEDEF_(0xC00D1BB5L)
  7158.  
  7159. //
  7160. // MessageId: NS_E_UNCOMP_COMP_COMBINATION
  7161. //
  7162. // MessageText:
  7163. //
  7164. //  It is not possible to mix uncompressed and compressed content in a session.%0
  7165. //
  7166. #define NS_E_UNCOMP_COMP_COMBINATION     _HRESULT_TYPEDEF_(0xC00D1BB6L)
  7167.  
  7168. //
  7169. // MessageId: NS_E_MULTIPLE_AUDIO_CODECS
  7170. //
  7171. // MessageText:
  7172. //
  7173. //  All audiences must use the same audio codec.%0
  7174. //
  7175. #define NS_E_MULTIPLE_AUDIO_CODECS       _HRESULT_TYPEDEF_(0xC00D1BB7L)
  7176.  
  7177. //
  7178. // MessageId: NS_E_MULTIPLE_AUDIO_FORMATS
  7179. //
  7180. // MessageText:
  7181. //
  7182. //  All audiences should use the same audio format to be compatible with Windows Media Player 7.1.%0
  7183. //
  7184. #define NS_E_MULTIPLE_AUDIO_FORMATS      _HRESULT_TYPEDEF_(0xC00D1BB8L)
  7185.  
  7186. //
  7187. // MessageId: NS_E_AUDIO_BITRATE_STEPDOWN
  7188. //
  7189. // MessageText:
  7190. //
  7191. //  The audio bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate.%0
  7192. //
  7193. #define NS_E_AUDIO_BITRATE_STEPDOWN      _HRESULT_TYPEDEF_(0xC00D1BB9L)
  7194.  
  7195. //
  7196. // MessageId: NS_E_INVALID_AUDIO_PEAKRATE
  7197. //
  7198. // MessageText:
  7199. //
  7200. //  The audio peak bit rate setting is not valid.%0
  7201. //
  7202. #define NS_E_INVALID_AUDIO_PEAKRATE      _HRESULT_TYPEDEF_(0xC00D1BBAL)
  7203.  
  7204. //
  7205. // MessageId: NS_E_INVALID_AUDIO_PEAKRATE_2
  7206. //
  7207. // MessageText:
  7208. //
  7209. //  The audio peak bit rate setting must be greater than the audio bit rate setting.%0
  7210. //
  7211. #define NS_E_INVALID_AUDIO_PEAKRATE_2    _HRESULT_TYPEDEF_(0xC00D1BBBL)
  7212.  
  7213. //
  7214. // MessageId: NS_E_INVALID_AUDIO_BUFFERMAX
  7215. //
  7216. // MessageText:
  7217. //
  7218. //  The setting for the maximum buffer size for audio is not valid.%0
  7219. //
  7220. #define NS_E_INVALID_AUDIO_BUFFERMAX     _HRESULT_TYPEDEF_(0xC00D1BBCL)
  7221.  
  7222. //
  7223. // MessageId: NS_E_MULTIPLE_VIDEO_CODECS
  7224. //
  7225. // MessageText:
  7226. //
  7227. //  All audiences must use the same video codec.%0
  7228. //
  7229. #define NS_E_MULTIPLE_VIDEO_CODECS       _HRESULT_TYPEDEF_(0xC00D1BBDL)
  7230.  
  7231. //
  7232. // MessageId: NS_E_MULTIPLE_VIDEO_SIZES
  7233. //
  7234. // MessageText:
  7235. //
  7236. //  All audiences should use the same video size to be compatible with Windows Media Player 7.1.%0
  7237. //
  7238. #define NS_E_MULTIPLE_VIDEO_SIZES        _HRESULT_TYPEDEF_(0xC00D1BBEL)
  7239.  
  7240. //
  7241. // MessageId: NS_E_INVALID_VIDEO_BITRATE
  7242. //
  7243. // MessageText:
  7244. //
  7245. //  The video bit rate setting is not valid.%0
  7246. //
  7247. #define NS_E_INVALID_VIDEO_BITRATE       _HRESULT_TYPEDEF_(0xC00D1BBFL)
  7248.  
  7249. //
  7250. // MessageId: NS_E_VIDEO_BITRATE_STEPDOWN
  7251. //
  7252. // MessageText:
  7253. //
  7254. //  The video bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate.%0
  7255. //
  7256. #define NS_E_VIDEO_BITRATE_STEPDOWN      _HRESULT_TYPEDEF_(0xC00D1BC0L)
  7257.  
  7258. //
  7259. // MessageId: NS_E_INVALID_VIDEO_PEAKRATE
  7260. //
  7261. // MessageText:
  7262. //
  7263. //  The video peak bit rate setting is not valid.%0
  7264. //
  7265. #define NS_E_INVALID_VIDEO_PEAKRATE      _HRESULT_TYPEDEF_(0xC00D1BC1L)
  7266.  
  7267. //
  7268. // MessageId: NS_E_INVALID_VIDEO_PEAKRATE_2
  7269. //
  7270. // MessageText:
  7271. //
  7272. //  The video peak bit rate setting must be greater than the video bit rate setting.%0
  7273. //
  7274. #define NS_E_INVALID_VIDEO_PEAKRATE_2    _HRESULT_TYPEDEF_(0xC00D1BC2L)
  7275.  
  7276. //
  7277. // MessageId: NS_E_INVALID_VIDEO_WIDTH
  7278. //
  7279. // MessageText:
  7280. //
  7281. //  The video width setting is not valid.%0
  7282. //
  7283. #define NS_E_INVALID_VIDEO_WIDTH         _HRESULT_TYPEDEF_(0xC00D1BC3L)
  7284.  
  7285. //
  7286. // MessageId: NS_E_INVALID_VIDEO_HEIGHT
  7287. //
  7288. // MessageText:
  7289. //
  7290. //  The video height setting is not valid.%0
  7291. //
  7292. #define NS_E_INVALID_VIDEO_HEIGHT        _HRESULT_TYPEDEF_(0xC00D1BC4L)
  7293.  
  7294. //
  7295. // MessageId: NS_E_INVALID_VIDEO_FPS
  7296. //
  7297. // MessageText:
  7298. //
  7299. //  The video frame rate setting is not valid.%0
  7300. //
  7301. #define NS_E_INVALID_VIDEO_FPS           _HRESULT_TYPEDEF_(0xC00D1BC5L)
  7302.  
  7303. //
  7304. // MessageId: NS_E_INVALID_VIDEO_KEYFRAME
  7305. //
  7306. // MessageText:
  7307. //
  7308. //  The video key frame setting is not valid.%0
  7309. //
  7310. #define NS_E_INVALID_VIDEO_KEYFRAME      _HRESULT_TYPEDEF_(0xC00D1BC6L)
  7311.  
  7312. //
  7313. // MessageId: NS_E_INVALID_VIDEO_IQUALITY
  7314. //
  7315. // MessageText:
  7316. //
  7317. //  The video image quality setting is not valid.%0
  7318. //
  7319. #define NS_E_INVALID_VIDEO_IQUALITY      _HRESULT_TYPEDEF_(0xC00D1BC7L)
  7320.  
  7321. //
  7322. // MessageId: NS_E_INVALID_VIDEO_CQUALITY
  7323. //
  7324. // MessageText:
  7325. //
  7326. //  The video codec quality setting is not valid.%0
  7327. //
  7328. #define NS_E_INVALID_VIDEO_CQUALITY      _HRESULT_TYPEDEF_(0xC00D1BC8L)
  7329.  
  7330. //
  7331. // MessageId: NS_E_INVALID_VIDEO_BUFFER
  7332. //
  7333. // MessageText:
  7334. //
  7335. //  The video buffer setting is not valid.%0
  7336. //
  7337. #define NS_E_INVALID_VIDEO_BUFFER        _HRESULT_TYPEDEF_(0xC00D1BC9L)
  7338.  
  7339. //
  7340. // MessageId: NS_E_INVALID_VIDEO_BUFFERMAX
  7341. //
  7342. // MessageText:
  7343. //
  7344. //  The setting for the maximum buffer size for video is not valid.%0
  7345. //
  7346. #define NS_E_INVALID_VIDEO_BUFFERMAX     _HRESULT_TYPEDEF_(0xC00D1BCAL)
  7347.  
  7348. //
  7349. // MessageId: NS_E_INVALID_VIDEO_BUFFERMAX_2
  7350. //
  7351. // MessageText:
  7352. //
  7353. //  The value of the video maximum buffer size setting must be greater than the video buffer size setting.%0
  7354. //
  7355. #define NS_E_INVALID_VIDEO_BUFFERMAX_2   _HRESULT_TYPEDEF_(0xC00D1BCBL)
  7356.  
  7357. //
  7358. // MessageId: NS_E_INVALID_VIDEO_WIDTH_ALIGN
  7359. //
  7360. // MessageText:
  7361. //
  7362. //  The alignment of the video width is not valid.%0
  7363. //
  7364. #define NS_E_INVALID_VIDEO_WIDTH_ALIGN   _HRESULT_TYPEDEF_(0xC00D1BCCL)
  7365.  
  7366. //
  7367. // MessageId: NS_E_INVALID_VIDEO_HEIGHT_ALIGN
  7368. //
  7369. // MessageText:
  7370. //
  7371. //  The alignment of the video height is not valid.%0
  7372. //
  7373. #define NS_E_INVALID_VIDEO_HEIGHT_ALIGN  _HRESULT_TYPEDEF_(0xC00D1BCDL)
  7374.  
  7375. //
  7376. // MessageId: NS_E_MULTIPLE_SCRIPT_BITRATES
  7377. //
  7378. // MessageText:
  7379. //
  7380. //  All bit rates must have the same script bit rate.%0
  7381. //
  7382. #define NS_E_MULTIPLE_SCRIPT_BITRATES    _HRESULT_TYPEDEF_(0xC00D1BCEL)
  7383.  
  7384. //
  7385. // MessageId: NS_E_INVALID_SCRIPT_BITRATE
  7386. //
  7387. // MessageText:
  7388. //
  7389. //  The script bit rate specified is not valid.%0
  7390. //
  7391. #define NS_E_INVALID_SCRIPT_BITRATE      _HRESULT_TYPEDEF_(0xC00D1BCFL)
  7392.  
  7393. //
  7394. // MessageId: NS_E_MULTIPLE_FILE_BITRATES
  7395. //
  7396. // MessageText:
  7397. //
  7398. //  All bit rates must have the same file transfer bit rate.%0
  7399. //
  7400. #define NS_E_MULTIPLE_FILE_BITRATES      _HRESULT_TYPEDEF_(0xC00D1BD0L)
  7401.  
  7402. //
  7403. // MessageId: NS_E_INVALID_FILE_BITRATE
  7404. //
  7405. // MessageText:
  7406. //
  7407. //  The file transfer bit rate is not valid.%0
  7408. //
  7409. #define NS_E_INVALID_FILE_BITRATE        _HRESULT_TYPEDEF_(0xC00D1BD1L)
  7410.  
  7411. //
  7412. // MessageId: NS_E_SAME_AS_INPUT_COMBINATION
  7413. //
  7414. // MessageText:
  7415. //
  7416. //  All audiences in a profile should either be same as input or have video width and height specified.%0
  7417. //
  7418. #define NS_E_SAME_AS_INPUT_COMBINATION   _HRESULT_TYPEDEF_(0xC00D1BD2L)
  7419.  
  7420. //
  7421. // MessageId: NS_E_SOURCE_CANNOT_LOOP
  7422. //
  7423. // MessageText:
  7424. //
  7425. //  This source type does not support looping.%0
  7426. //
  7427. #define NS_E_SOURCE_CANNOT_LOOP          _HRESULT_TYPEDEF_(0xC00D1BD3L)
  7428.  
  7429. //
  7430. // MessageId: NS_E_INVALID_FOLDDOWN_COEFFICIENTS
  7431. //
  7432. // MessageText:
  7433. //
  7434. //  The fold-down value needs to be between -144 and 0.%0
  7435. //
  7436. #define NS_E_INVALID_FOLDDOWN_COEFFICIENTS _HRESULT_TYPEDEF_(0xC00D1BD4L)
  7437.  
  7438. //
  7439. // MessageId: NS_E_DRMPROFILE_NOTFOUND
  7440. //
  7441. // MessageText:
  7442. //
  7443. //  The specified DRM profile does not exist in the system.%0
  7444. //
  7445. #define NS_E_DRMPROFILE_NOTFOUND         _HRESULT_TYPEDEF_(0xC00D1BD5L)
  7446.  
  7447. //
  7448. // MessageId: NS_E_INVALID_TIMECODE
  7449. //
  7450. // MessageText:
  7451. //
  7452. //  The specified time code is not valid.%0
  7453. //
  7454. #define NS_E_INVALID_TIMECODE            _HRESULT_TYPEDEF_(0xC00D1BD6L)
  7455.  
  7456. //
  7457. // MessageId: NS_E_NO_AUDIO_TIMECOMPRESSION
  7458. //
  7459. // MessageText:
  7460. //
  7461. //  It is not possible to apply time compression to a video-only session.%0
  7462. //
  7463. #define NS_E_NO_AUDIO_TIMECOMPRESSION    _HRESULT_TYPEDEF_(0xC00D1BD7L)
  7464.  
  7465. //
  7466. // MessageId: NS_E_NO_TWOPASS_TIMECOMPRESSION
  7467. //
  7468. // MessageText:
  7469. //
  7470. //  It is not possible to apply time compression to a session that is using two-pass encoding.%0
  7471. //
  7472. #define NS_E_NO_TWOPASS_TIMECOMPRESSION  _HRESULT_TYPEDEF_(0xC00D1BD8L)
  7473.  
  7474. //
  7475. // MessageId: NS_E_TIMECODE_REQUIRES_VIDEOSTREAM
  7476. //
  7477. // MessageText:
  7478. //
  7479. //  It is not possible to generate a time code for an audio-only session.%0
  7480. //
  7481. #define NS_E_TIMECODE_REQUIRES_VIDEOSTREAM _HRESULT_TYPEDEF_(0xC00D1BD9L)
  7482.  
  7483. //
  7484. // MessageId: NS_E_NO_MBR_WITH_TIMECODE
  7485. //
  7486. // MessageText:
  7487. //
  7488. //  It is not possible to generate a time code when you are encoding content at multiple bit rates.%0
  7489. //
  7490. #define NS_E_NO_MBR_WITH_TIMECODE        _HRESULT_TYPEDEF_(0xC00D1BDAL)
  7491.  
  7492. //
  7493. // MessageId: NS_E_INVALID_INTERLACEMODE
  7494. //
  7495. // MessageText:
  7496. //
  7497. //  The video codec selected does not support maintaining interlacing in video.%0
  7498. //
  7499. #define NS_E_INVALID_INTERLACEMODE       _HRESULT_TYPEDEF_(0xC00D1BDBL)
  7500.  
  7501. //
  7502. // MessageId: NS_E_INVALID_INTERLACE_COMPAT
  7503. //
  7504. // MessageText:
  7505. //
  7506. //  Maintaining interlacing in video is not compatible with Windows Media Player 7.1.%0
  7507. //
  7508. #define NS_E_INVALID_INTERLACE_COMPAT    _HRESULT_TYPEDEF_(0xC00D1BDCL)
  7509.  
  7510. //
  7511. // MessageId: NS_E_INVALID_NONSQUAREPIXEL_COMPAT
  7512. //
  7513. // MessageText:
  7514. //
  7515. //  Allowing nonsquare pixel output is not compatible with Windows Media Player 7.1.%0
  7516. //
  7517. #define NS_E_INVALID_NONSQUAREPIXEL_COMPAT _HRESULT_TYPEDEF_(0xC00D1BDDL)
  7518.  
  7519. //
  7520. // MessageId: NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL
  7521. //
  7522. // MessageText:
  7523. //
  7524. //  Only capture devices can be used with device control.%0
  7525. //
  7526. #define NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL _HRESULT_TYPEDEF_(0xC00D1BDEL)
  7527.  
  7528. //
  7529. // MessageId: NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR
  7530. //
  7531. // MessageText:
  7532. //
  7533. //  It is not possible to generate the stream format file if you are using quality-based VBR encoding for the audio or video stream. Instead use the Windows Media file generated after encoding to create the announcement file.%0
  7534. //
  7535. #define NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR _HRESULT_TYPEDEF_(0xC00D1BDFL)
  7536.  
  7537. //
  7538. // MessageId: NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT
  7539. //
  7540. // MessageText:
  7541. //
  7542. //  It is not possible to create a DRM profile because the maximum number of profiles has been reached. You must delete some DRM profiles before creating new ones.%0
  7543. //
  7544. #define NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT _HRESULT_TYPEDEF_(0xC00D1BE0L)
  7545.  
  7546. //
  7547. // MessageId: NS_E_DEVICECONTROL_UNSTABLE
  7548. //
  7549. // MessageText:
  7550. //
  7551. //  The device is in an unstable state. Check that the device is functioning properly and a tape is in place.
  7552. //
  7553. #define NS_E_DEVICECONTROL_UNSTABLE      _HRESULT_TYPEDEF_(0xC00D1BE1L)
  7554.  
  7555. //
  7556. // MessageId: NS_E_INVALID_PIXEL_ASPECT_RATIO
  7557. //
  7558. // MessageText:
  7559. //
  7560. //  The pixel aspect ratio value must be between 1 and 255.
  7561. //
  7562. #define NS_E_INVALID_PIXEL_ASPECT_RATIO  _HRESULT_TYPEDEF_(0xC00D1BE2L)
  7563.  
  7564. //
  7565. // MessageId: NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH
  7566. //
  7567. // MessageText:
  7568. //
  7569. //  All streams with different languages in the same audience must have same properties.%0
  7570. //
  7571. #define NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH _HRESULT_TYPEDEF_(0xC00D1BE3L)
  7572.  
  7573. //
  7574. // MessageId: NS_E_INVALID_PROFILE_CONTENTTYPE
  7575. //
  7576. // MessageText:
  7577. //
  7578. //  The profile must contain at least one audio or video stream.%0
  7579. //
  7580. #define NS_E_INVALID_PROFILE_CONTENTTYPE _HRESULT_TYPEDEF_(0xC00D1BE4L)
  7581.  
  7582. //
  7583. // MessageId: NS_E_TRANSFORM_PLUGIN_NOT_FOUND
  7584. //
  7585. // MessageText:
  7586. //
  7587. //  The transform plug-in could not be found.%0
  7588. //
  7589. #define NS_E_TRANSFORM_PLUGIN_NOT_FOUND  _HRESULT_TYPEDEF_(0xC00D1BE5L)
  7590.  
  7591. //
  7592. // MessageId: NS_E_TRANSFORM_PLUGIN_INVALID
  7593. //
  7594. // MessageText:
  7595. //
  7596. //  The transform plug-in is not valid. It may be damaged or you may not have the required permissions to access the plug-in.%0
  7597. //
  7598. #define NS_E_TRANSFORM_PLUGIN_INVALID    _HRESULT_TYPEDEF_(0xC00D1BE6L)
  7599.  
  7600. //
  7601. // MessageId: NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS
  7602. //
  7603. // MessageText:
  7604. //
  7605. //  To use two-pass encoding, you must enable device control and setup an edit decision list (EDL) that has at least one entry.%0
  7606. //
  7607. #define NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS _HRESULT_TYPEDEF_(0xC00D1BE7L)
  7608.  
  7609. //
  7610. // MessageId: NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING
  7611. //
  7612. // MessageText:
  7613. //
  7614. //  When you choose to maintain the interlacing in your video, the output video size must be a multiple of 4.%0
  7615. //
  7616. #define NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING _HRESULT_TYPEDEF_(0xC00D1BE8L)
  7617.  
  7618.  
  7619. /////////////////////////////////////////////////////////////////////////
  7620. //
  7621. // DRM Specific Errors
  7622. //
  7623. // IdRange = 10000..10999
  7624. /////////////////////////////////////////////////////////////////////////
  7625. //
  7626. // MessageId: NS_E_DRM_INVALID_APPLICATION
  7627. //
  7628. // MessageText:
  7629. //
  7630. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0
  7631. //
  7632. #define NS_E_DRM_INVALID_APPLICATION     _HRESULT_TYPEDEF_(0xC00D2711L)
  7633.  
  7634. //
  7635. // MessageId: NS_E_DRM_LICENSE_STORE_ERROR
  7636. //
  7637. // MessageText:
  7638. //
  7639. //  License storage is not working. Contact Microsoft product support.%0
  7640. //
  7641. #define NS_E_DRM_LICENSE_STORE_ERROR     _HRESULT_TYPEDEF_(0xC00D2712L)
  7642.  
  7643. //
  7644. // MessageId: NS_E_DRM_SECURE_STORE_ERROR
  7645. //
  7646. // MessageText:
  7647. //
  7648. //  Secure storage is not working. Contact Microsoft product support.%0
  7649. //
  7650. #define NS_E_DRM_SECURE_STORE_ERROR      _HRESULT_TYPEDEF_(0xC00D2713L)
  7651.  
  7652. //
  7653. // MessageId: NS_E_DRM_LICENSE_STORE_SAVE_ERROR
  7654. //
  7655. // MessageText:
  7656. //
  7657. //  License acquisition did not work. Acquire a new license or contact the content provider for further assistance.%0
  7658. //
  7659. #define NS_E_DRM_LICENSE_STORE_SAVE_ERROR _HRESULT_TYPEDEF_(0xC00D2714L)
  7660.  
  7661. //
  7662. // MessageId: NS_E_DRM_SECURE_STORE_UNLOCK_ERROR
  7663. //
  7664. // MessageText:
  7665. //
  7666. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  7667. //
  7668. #define NS_E_DRM_SECURE_STORE_UNLOCK_ERROR _HRESULT_TYPEDEF_(0xC00D2715L)
  7669.  
  7670. //
  7671. // MessageId: NS_E_DRM_INVALID_CONTENT
  7672. //
  7673. // MessageText:
  7674. //
  7675. //  The media file is corrupted. Contact the content provider to get a new file.%0
  7676. //
  7677. #define NS_E_DRM_INVALID_CONTENT         _HRESULT_TYPEDEF_(0xC00D2716L)
  7678.  
  7679. //
  7680. // MessageId: NS_E_DRM_UNABLE_TO_OPEN_LICENSE
  7681. //
  7682. // MessageText:
  7683. //
  7684. //  The license is corrupted. Acquire a new license.%0
  7685. //
  7686. #define NS_E_DRM_UNABLE_TO_OPEN_LICENSE  _HRESULT_TYPEDEF_(0xC00D2717L)
  7687.  
  7688. //
  7689. // MessageId: NS_E_DRM_INVALID_LICENSE
  7690. //
  7691. // MessageText:
  7692. //
  7693. //  The license is corrupted or invalid. Acquire a new license%0
  7694. //
  7695. #define NS_E_DRM_INVALID_LICENSE         _HRESULT_TYPEDEF_(0xC00D2718L)
  7696.  
  7697. //
  7698. // MessageId: NS_E_DRM_INVALID_MACHINE
  7699. //
  7700. // MessageText:
  7701. //
  7702. //  Licenses cannot be copied from one computer to another. Use License Management to transfer licenses, or get a new license for the media file.%0
  7703. //
  7704. #define NS_E_DRM_INVALID_MACHINE         _HRESULT_TYPEDEF_(0xC00D2719L)
  7705.  
  7706. //
  7707. // MessageId: NS_E_DRM_ENUM_LICENSE_FAILED
  7708. //
  7709. // MessageText:
  7710. //
  7711. //  License storage is not working. Contact Microsoft product support.%0
  7712. //
  7713. #define NS_E_DRM_ENUM_LICENSE_FAILED     _HRESULT_TYPEDEF_(0xC00D271BL)
  7714.  
  7715. //
  7716. // MessageId: NS_E_DRM_INVALID_LICENSE_REQUEST
  7717. //
  7718. // MessageText:
  7719. //
  7720. //  The media file is corrupted. Contact the content provider to get a new file.%0
  7721. //
  7722. #define NS_E_DRM_INVALID_LICENSE_REQUEST _HRESULT_TYPEDEF_(0xC00D271CL)
  7723.  
  7724. //
  7725. // MessageId: NS_E_DRM_UNABLE_TO_INITIALIZE
  7726. //
  7727. // MessageText:
  7728. //
  7729. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  7730. //
  7731. #define NS_E_DRM_UNABLE_TO_INITIALIZE    _HRESULT_TYPEDEF_(0xC00D271DL)
  7732.  
  7733. //
  7734. // MessageId: NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE
  7735. //
  7736. // MessageText:
  7737. //
  7738. //  The license could not be acquired. Try again later.%0
  7739. //
  7740. #define NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE _HRESULT_TYPEDEF_(0xC00D271EL)
  7741.  
  7742. //
  7743. // MessageId: NS_E_DRM_INVALID_LICENSE_ACQUIRED
  7744. //
  7745. // MessageText:
  7746. //
  7747. //  License acquisition did not work. Acquire a new license or contact the content provider for further assistance.%0
  7748. //
  7749. #define NS_E_DRM_INVALID_LICENSE_ACQUIRED _HRESULT_TYPEDEF_(0xC00D271FL)
  7750.  
  7751. //
  7752. // MessageId: NS_E_DRM_NO_RIGHTS
  7753. //
  7754. // MessageText:
  7755. //
  7756. //  The requested operation cannot be performed on this file.%0
  7757. //
  7758. #define NS_E_DRM_NO_RIGHTS               _HRESULT_TYPEDEF_(0xC00D2720L)
  7759.  
  7760. //
  7761. // MessageId: NS_E_DRM_KEY_ERROR
  7762. //
  7763. // MessageText:
  7764. //
  7765. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7766. //
  7767. #define NS_E_DRM_KEY_ERROR               _HRESULT_TYPEDEF_(0xC00D2721L)
  7768.  
  7769. //
  7770. // MessageId: NS_E_DRM_ENCRYPT_ERROR
  7771. //
  7772. // MessageText:
  7773. //
  7774. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0
  7775. //
  7776. #define NS_E_DRM_ENCRYPT_ERROR           _HRESULT_TYPEDEF_(0xC00D2722L)
  7777.  
  7778. //
  7779. // MessageId: NS_E_DRM_DECRYPT_ERROR
  7780. //
  7781. // MessageText:
  7782. //
  7783. //  The media file is corrupted. Contact the content provider to get a new file.%0
  7784. //
  7785. #define NS_E_DRM_DECRYPT_ERROR           _HRESULT_TYPEDEF_(0xC00D2723L)
  7786.  
  7787. //
  7788. // MessageId: NS_E_DRM_LICENSE_INVALID_XML
  7789. //
  7790. // MessageText:
  7791. //
  7792. //  The license is corrupted. Acquire a new license.%0
  7793. //
  7794. #define NS_E_DRM_LICENSE_INVALID_XML     _HRESULT_TYPEDEF_(0xC00D2725L)
  7795.  
  7796. //
  7797. // MessageId: NS_S_DRM_LICENSE_ACQUIRED
  7798. //
  7799. // MessageText:
  7800. //
  7801. //  Status message: The license was acquired.%0
  7802. //
  7803. #define NS_S_DRM_LICENSE_ACQUIRED        _HRESULT_TYPEDEF_(0x000D2726L)
  7804.  
  7805. //
  7806. // MessageId: NS_S_DRM_INDIVIDUALIZED
  7807. //
  7808. // MessageText:
  7809. //
  7810. //  Status message: The security upgrade has been completed.%0
  7811. //
  7812. #define NS_S_DRM_INDIVIDUALIZED          _HRESULT_TYPEDEF_(0x000D2727L)
  7813.  
  7814. //
  7815. // MessageId: NS_E_DRM_NEEDS_INDIVIDUALIZATION
  7816. //
  7817. // MessageText:
  7818. //
  7819. //  A security upgrade is required to perform the operation on this media file.%0
  7820. //
  7821. #define NS_E_DRM_NEEDS_INDIVIDUALIZATION _HRESULT_TYPEDEF_(0xC00D2728L)
  7822.  
  7823. //
  7824. // MessageId: NS_E_DRM_ALREADY_INDIVIDUALIZED
  7825. //
  7826. // MessageText:
  7827. //
  7828. //  You already have the latest security components. No upgrade is necessary at this time.%0
  7829. //
  7830. #define NS_E_DRM_ALREADY_INDIVIDUALIZED  _HRESULT_TYPEDEF_(0xC00D2729L)
  7831.  
  7832. //
  7833. // MessageId: NS_E_DRM_ACTION_NOT_QUERIED
  7834. //
  7835. // MessageText:
  7836. //
  7837. //  The application cannot perform this action. Contact product support for this application.%0
  7838. //
  7839. #define NS_E_DRM_ACTION_NOT_QUERIED      _HRESULT_TYPEDEF_(0xC00D272AL)
  7840.  
  7841. //
  7842. // MessageId: NS_E_DRM_ACQUIRING_LICENSE
  7843. //
  7844. // MessageText:
  7845. //
  7846. //  You cannot begin a new license acquisition process until the current one has been completed.%0
  7847. //
  7848. #define NS_E_DRM_ACQUIRING_LICENSE       _HRESULT_TYPEDEF_(0xC00D272BL)
  7849.  
  7850. //
  7851. // MessageId: NS_E_DRM_INDIVIDUALIZING
  7852. //
  7853. // MessageText:
  7854. //
  7855. //  You cannot begin a new security upgrade until the current one has been completed.%0
  7856. //
  7857. #define NS_E_DRM_INDIVIDUALIZING         _HRESULT_TYPEDEF_(0xC00D272CL)
  7858.  
  7859. //
  7860. // MessageId: NS_E_DRM_PARAMETERS_MISMATCHED
  7861. //
  7862. // MessageText:
  7863. //
  7864. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7865. //
  7866. #define NS_E_DRM_PARAMETERS_MISMATCHED   _HRESULT_TYPEDEF_(0xC00D272FL)
  7867.  
  7868. //
  7869. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT
  7870. //
  7871. // MessageText:
  7872. //
  7873. //  A license cannot be created for this media file. Reinstall the application.%0
  7874. //
  7875. #define NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT _HRESULT_TYPEDEF_(0xC00D2730L)
  7876.  
  7877. //
  7878. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT
  7879. //
  7880. // MessageText:
  7881. //
  7882. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7883. //
  7884. #define NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT _HRESULT_TYPEDEF_(0xC00D2731L)
  7885.  
  7886. //
  7887. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT
  7888. //
  7889. // MessageText:
  7890. //
  7891. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7892. //
  7893. #define NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT _HRESULT_TYPEDEF_(0xC00D2732L)
  7894.  
  7895. //
  7896. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT
  7897. //
  7898. // MessageText:
  7899. //
  7900. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7901. //
  7902. #define NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT _HRESULT_TYPEDEF_(0xC00D2733L)
  7903.  
  7904. //
  7905. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT
  7906. //
  7907. // MessageText:
  7908. //
  7909. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7910. //
  7911. #define NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT _HRESULT_TYPEDEF_(0xC00D2734L)
  7912.  
  7913. //
  7914. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT
  7915. //
  7916. // MessageText:
  7917. //
  7918. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7919. //
  7920. #define NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT _HRESULT_TYPEDEF_(0xC00D2735L)
  7921.  
  7922. //
  7923. // MessageId: NS_E_DRM_INDIVIDUALIZE_ERROR
  7924. //
  7925. // MessageText:
  7926. //
  7927. //  The security upgrade failed. Try again later.%0
  7928. //
  7929. #define NS_E_DRM_INDIVIDUALIZE_ERROR     _HRESULT_TYPEDEF_(0xC00D2736L)
  7930.  
  7931. //
  7932. // MessageId: NS_E_DRM_LICENSE_OPEN_ERROR
  7933. //
  7934. // MessageText:
  7935. //
  7936. //  License storage is not working. Contact Microsoft product support.%0
  7937. //
  7938. #define NS_E_DRM_LICENSE_OPEN_ERROR      _HRESULT_TYPEDEF_(0xC00D2737L)
  7939.  
  7940. //
  7941. // MessageId: NS_E_DRM_LICENSE_CLOSE_ERROR
  7942. //
  7943. // MessageText:
  7944. //
  7945. //  License storage is not working. Contact Microsoft product support.%0
  7946. //
  7947. #define NS_E_DRM_LICENSE_CLOSE_ERROR     _HRESULT_TYPEDEF_(0xC00D2738L)
  7948.  
  7949. //
  7950. // MessageId: NS_E_DRM_GET_LICENSE_ERROR
  7951. //
  7952. // MessageText:
  7953. //
  7954. //  License storage is not working. Contact Microsoft product support.%0
  7955. //
  7956. #define NS_E_DRM_GET_LICENSE_ERROR       _HRESULT_TYPEDEF_(0xC00D2739L)
  7957.  
  7958. //
  7959. // MessageId: NS_E_DRM_QUERY_ERROR
  7960. //
  7961. // MessageText:
  7962. //
  7963. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  7964. //
  7965. #define NS_E_DRM_QUERY_ERROR             _HRESULT_TYPEDEF_(0xC00D273AL)
  7966.  
  7967. //
  7968. // MessageId: NS_E_DRM_REPORT_ERROR
  7969. //
  7970. // MessageText:
  7971. //
  7972. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0
  7973. //
  7974. #define NS_E_DRM_REPORT_ERROR            _HRESULT_TYPEDEF_(0xC00D273BL)
  7975.  
  7976. //
  7977. // MessageId: NS_E_DRM_GET_LICENSESTRING_ERROR
  7978. //
  7979. // MessageText:
  7980. //
  7981. //  License storage is not working. Contact Microsoft product support.%0
  7982. //
  7983. #define NS_E_DRM_GET_LICENSESTRING_ERROR _HRESULT_TYPEDEF_(0xC00D273CL)
  7984.  
  7985. //
  7986. // MessageId: NS_E_DRM_GET_CONTENTSTRING_ERROR
  7987. //
  7988. // MessageText:
  7989. //
  7990. //  The media file is corrupted. Contact the content provider to get a new file.%0
  7991. //
  7992. #define NS_E_DRM_GET_CONTENTSTRING_ERROR _HRESULT_TYPEDEF_(0xC00D273DL)
  7993.  
  7994. //
  7995. // MessageId: NS_E_DRM_MONITOR_ERROR
  7996. //
  7997. // MessageText:
  7998. //
  7999. //  A problem has occurred in the Digital Rights Management component. Try again later.%0
  8000. //
  8001. #define NS_E_DRM_MONITOR_ERROR           _HRESULT_TYPEDEF_(0xC00D273EL)
  8002.  
  8003. //
  8004. // MessageId: NS_E_DRM_UNABLE_TO_SET_PARAMETER
  8005. //
  8006. // MessageText:
  8007. //
  8008. //  The application has made an invalid call to the Digital Rights Management component. Contact product support for this application.%0
  8009. //
  8010. #define NS_E_DRM_UNABLE_TO_SET_PARAMETER _HRESULT_TYPEDEF_(0xC00D273FL)
  8011.  
  8012. //
  8013. // MessageId: NS_E_DRM_INVALID_APPDATA
  8014. //
  8015. // MessageText:
  8016. //
  8017. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8018. //
  8019. #define NS_E_DRM_INVALID_APPDATA         _HRESULT_TYPEDEF_(0xC00D2740L)
  8020.  
  8021. //
  8022. // MessageId: NS_E_DRM_INVALID_APPDATA_VERSION
  8023. //
  8024. // MessageText:
  8025. //
  8026. //  A problem has occurred in the Digital Rights Management component. Contact product support for this application.%0.
  8027. //
  8028. #define NS_E_DRM_INVALID_APPDATA_VERSION _HRESULT_TYPEDEF_(0xC00D2741L)
  8029.  
  8030. //
  8031. // MessageId: NS_E_DRM_BACKUP_EXISTS
  8032. //
  8033. // MessageText:
  8034. //
  8035. //  Licenses are already backed up in this location.%0
  8036. //
  8037. #define NS_E_DRM_BACKUP_EXISTS           _HRESULT_TYPEDEF_(0xC00D2742L)
  8038.  
  8039. //
  8040. // MessageId: NS_E_DRM_BACKUP_CORRUPT
  8041. //
  8042. // MessageText:
  8043. //
  8044. //  One or more backed-up licenses are missing or corrupt.%0
  8045. //
  8046. #define NS_E_DRM_BACKUP_CORRUPT          _HRESULT_TYPEDEF_(0xC00D2743L)
  8047.  
  8048. //
  8049. // MessageId: NS_E_DRM_BACKUPRESTORE_BUSY
  8050. //
  8051. // MessageText:
  8052. //
  8053. //  You cannot begin a new backup process until the current process has been completed.%0
  8054. //
  8055. #define NS_E_DRM_BACKUPRESTORE_BUSY      _HRESULT_TYPEDEF_(0xC00D2744L)
  8056.  
  8057. //
  8058. // MessageId: NS_S_DRM_MONITOR_CANCELLED
  8059. //
  8060. // MessageText:
  8061. //
  8062. //  Status message: License monitoring has been cancelled.%0
  8063. //
  8064. #define NS_S_DRM_MONITOR_CANCELLED       _HRESULT_TYPEDEF_(0x000D2746L)
  8065.  
  8066. //
  8067. // MessageId: NS_S_DRM_ACQUIRE_CANCELLED
  8068. //
  8069. // MessageText:
  8070. //
  8071. //  Status message: License acquisition has been cancelled.%0
  8072. //
  8073. #define NS_S_DRM_ACQUIRE_CANCELLED       _HRESULT_TYPEDEF_(0x000D2747L)
  8074.  
  8075. //
  8076. // MessageId: NS_E_DRM_LICENSE_UNUSABLE
  8077. //
  8078. // MessageText:
  8079. //
  8080. //  The license is invalid. Contact the content provider for further assistance.%0
  8081. //
  8082. #define NS_E_DRM_LICENSE_UNUSABLE        _HRESULT_TYPEDEF_(0xC00D2748L)
  8083.  
  8084. //
  8085. // MessageId: NS_E_DRM_INVALID_PROPERTY
  8086. //
  8087. // MessageText:
  8088. //
  8089. //  A required property was not set by the application. Contact product support for this application.%0.
  8090. //
  8091. #define NS_E_DRM_INVALID_PROPERTY        _HRESULT_TYPEDEF_(0xC00D2749L)
  8092.  
  8093. //
  8094. // MessageId: NS_E_DRM_SECURE_STORE_NOT_FOUND
  8095. //
  8096. // MessageText:
  8097. //
  8098. //  A problem has occurred in the Digital Rights Management component of this application. Try to acquire a license again.%0
  8099. //
  8100. #define NS_E_DRM_SECURE_STORE_NOT_FOUND  _HRESULT_TYPEDEF_(0xC00D274AL)
  8101.  
  8102. //
  8103. // MessageId: NS_E_DRM_CACHED_CONTENT_ERROR
  8104. //
  8105. // MessageText:
  8106. //
  8107. //  A license cannot be found for this media file. Use License Management to transfer a license for this file from the original computer, or acquire a new license.%0
  8108. //
  8109. #define NS_E_DRM_CACHED_CONTENT_ERROR    _HRESULT_TYPEDEF_(0xC00D274BL)
  8110.  
  8111. //
  8112. // MessageId: NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE
  8113. //
  8114. // MessageText:
  8115. //
  8116. //  A problem occurred during the security upgrade. Try again later.%0
  8117. //
  8118. #define NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE _HRESULT_TYPEDEF_(0xC00D274CL)
  8119.  
  8120. //
  8121. // MessageId: NS_E_DRM_DRIVER_AUTH_FAILURE
  8122. //
  8123. // MessageText:
  8124. //
  8125. //  Certified driver components are required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware.%0
  8126. //
  8127. #define NS_E_DRM_DRIVER_AUTH_FAILURE     _HRESULT_TYPEDEF_(0xC00D274DL)
  8128.  
  8129. //
  8130. // MessageId: NS_E_DRM_NEED_UPGRADE_MSSAP
  8131. //
  8132. // MessageText:
  8133. //
  8134. //  One or more of the Secure Audio Path components were not found or an entry point in those components was not found.%0
  8135. //
  8136. #define NS_E_DRM_NEED_UPGRADE_MSSAP      _HRESULT_TYPEDEF_(0xC00D274EL)
  8137.  
  8138. //
  8139. // MessageId: NS_E_DRM_REOPEN_CONTENT
  8140. //
  8141. // MessageText:
  8142. //
  8143. //  Status message: Reopen the file.%0
  8144. //
  8145. #define NS_E_DRM_REOPEN_CONTENT          _HRESULT_TYPEDEF_(0xC00D274FL)
  8146.  
  8147. //
  8148. // MessageId: NS_E_DRM_DRIVER_DIGIOUT_FAILURE
  8149. //
  8150. // MessageText:
  8151. //
  8152. //  Certain driver functionality is required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware.%0
  8153. //
  8154. #define NS_E_DRM_DRIVER_DIGIOUT_FAILURE  _HRESULT_TYPEDEF_(0xC00D2750L)
  8155.  
  8156. //
  8157. // MessageId: NS_E_DRM_INVALID_SECURESTORE_PASSWORD
  8158. //
  8159. // MessageText:
  8160. //
  8161. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8162. //
  8163. #define NS_E_DRM_INVALID_SECURESTORE_PASSWORD _HRESULT_TYPEDEF_(0xC00D2751L)
  8164.  
  8165. //
  8166. // MessageId: NS_E_DRM_APPCERT_REVOKED
  8167. //
  8168. // MessageText:
  8169. //
  8170. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8171. //
  8172. #define NS_E_DRM_APPCERT_REVOKED         _HRESULT_TYPEDEF_(0xC00D2752L)
  8173.  
  8174. //
  8175. // MessageId: NS_E_DRM_RESTORE_FRAUD
  8176. //
  8177. // MessageText:
  8178. //
  8179. //  You cannot restore your license(s).%0
  8180. //
  8181. #define NS_E_DRM_RESTORE_FRAUD           _HRESULT_TYPEDEF_(0xC00D2753L)
  8182.  
  8183. //
  8184. // MessageId: NS_E_DRM_HARDWARE_INCONSISTENT
  8185. //
  8186. // MessageText:
  8187. //
  8188. //  The licenses for your media files are corrupted. Contact Microsoft product support.%0
  8189. //
  8190. #define NS_E_DRM_HARDWARE_INCONSISTENT   _HRESULT_TYPEDEF_(0xC00D2754L)
  8191.  
  8192. //
  8193. // MessageId: NS_E_DRM_SDMI_TRIGGER
  8194. //
  8195. // MessageText:
  8196. //
  8197. //  To transfer this media file, you must upgrade the application.%0
  8198. //
  8199. #define NS_E_DRM_SDMI_TRIGGER            _HRESULT_TYPEDEF_(0xC00D2755L)
  8200.  
  8201. //
  8202. // MessageId: NS_E_DRM_SDMI_NOMORECOPIES
  8203. //
  8204. // MessageText:
  8205. //
  8206. //  You cannot make any more copies of this media file.%0
  8207. //
  8208. #define NS_E_DRM_SDMI_NOMORECOPIES       _HRESULT_TYPEDEF_(0xC00D2756L)
  8209.  
  8210. //
  8211. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT
  8212. //
  8213. // MessageText:
  8214. //
  8215. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8216. //
  8217. #define NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT _HRESULT_TYPEDEF_(0xC00D2757L)
  8218.  
  8219. //
  8220. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT
  8221. //
  8222. // MessageText:
  8223. //
  8224. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8225. //
  8226. #define NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT _HRESULT_TYPEDEF_(0xC00D2758L)
  8227.  
  8228. ;// This error is never shown to user but needed for program logic.
  8229. //
  8230. // MessageId: NS_E_DRM_LICENSE_NOTACQUIRED
  8231. //
  8232. // MessageText:
  8233. //
  8234. //  Unable to obtain license.%0
  8235. //
  8236. #define NS_E_DRM_LICENSE_NOTACQUIRED     _HRESULT_TYPEDEF_(0xC00D2759L)
  8237.  
  8238. //
  8239. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT
  8240. //
  8241. // MessageText:
  8242. //
  8243. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8244. //
  8245. #define NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT _HRESULT_TYPEDEF_(0xC00D275AL)
  8246.  
  8247. //
  8248. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT
  8249. //
  8250. // MessageText:
  8251. //
  8252. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8253. //
  8254. #define NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT _HRESULT_TYPEDEF_(0xC00D275BL)
  8255.  
  8256. //
  8257. // MessageId: NS_E_DRM_BUFFER_TOO_SMALL
  8258. //
  8259. // MessageText:
  8260. //
  8261. //  The buffer supplied is not sufficient.%0.
  8262. //
  8263. #define NS_E_DRM_BUFFER_TOO_SMALL        _HRESULT_TYPEDEF_(0xC00D275CL)
  8264.  
  8265. //
  8266. // MessageId: NS_E_DRM_UNSUPPORTED_PROPERTY
  8267. //
  8268. // MessageText:
  8269. //
  8270. //  The property requested is not supported.%0.
  8271. //
  8272. #define NS_E_DRM_UNSUPPORTED_PROPERTY    _HRESULT_TYPEDEF_(0xC00D275DL)
  8273.  
  8274. //
  8275. // MessageId: NS_E_DRM_ERROR_BAD_NET_RESP
  8276. //
  8277. // MessageText:
  8278. //
  8279. //  The specified server cannot perform the requested operation.%0.
  8280. //
  8281. #define NS_E_DRM_ERROR_BAD_NET_RESP      _HRESULT_TYPEDEF_(0xC00D275EL)
  8282.  
  8283. //
  8284. // MessageId: NS_E_DRM_STORE_NOTALLSTORED
  8285. //
  8286. // MessageText:
  8287. //
  8288. //  Some of the licenses could not be stored.%0.
  8289. //
  8290. #define NS_E_DRM_STORE_NOTALLSTORED      _HRESULT_TYPEDEF_(0xC00D275FL)
  8291.  
  8292. //
  8293. // MessageId: NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID
  8294. //
  8295. // MessageText:
  8296. //
  8297. //  The Digital Rights Management security upgrade component could not be validated. Contact Microsoft product support.%0
  8298. //
  8299. #define NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID _HRESULT_TYPEDEF_(0xC00D2760L)
  8300.  
  8301. //
  8302. // MessageId: NS_E_DRM_INVALID_DATA
  8303. //
  8304. // MessageText:
  8305. //
  8306. //  Invalid or corrupt data was encountered.%0
  8307. //
  8308. #define NS_E_DRM_INVALID_DATA            _HRESULT_TYPEDEF_(0xC00D2761L)
  8309.  
  8310. //
  8311. // MessageId: NS_E_DRM_UNABLE_TO_CONTACT_SERVER
  8312. //
  8313. // MessageText:
  8314. //
  8315. //  Unable to contact the server for the requested operation.%0
  8316. //
  8317. #define NS_E_DRM_UNABLE_TO_CONTACT_SERVER _HRESULT_TYPEDEF_(0xC00D2762L)
  8318.  
  8319. //
  8320. // MessageId: NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT
  8321. //
  8322. // MessageText:
  8323. //
  8324. //  A problem has occurred in the Digital Rights Management component. Contact Microsoft product support.%0.
  8325. //
  8326. #define NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT _HRESULT_TYPEDEF_(0xC00D2763L)
  8327.  
  8328. //
  8329. // MessageId: NS_E_DRM_NOT_CONFIGURED
  8330. //
  8331. // MessageText:
  8332. //
  8333. //  Not all of the necessary properties for DRM have been set.%0
  8334. //
  8335. #define NS_E_DRM_NOT_CONFIGURED          _HRESULT_TYPEDEF_(0xC00D2764L)
  8336.  
  8337. //
  8338. // MessageId: NS_E_DRM_DEVICE_ACTIVATION_CANCELED
  8339. //
  8340. // MessageText:
  8341. //
  8342. //  The portable device does not have the security required to copy protected files to it. To obtain the additional security, try to copy the file to your portable device again. When a message appears, click OK.%0
  8343. //
  8344. #define NS_E_DRM_DEVICE_ACTIVATION_CANCELED _HRESULT_TYPEDEF_(0xC00D2765L)
  8345.  
  8346.  
  8347. //
  8348. // License Reasons Section
  8349. // Error Codes why a license is not usable. Reserve 10200..10300 for this purpose.
  8350. // 10200..10249 is for license reported reasons. 10250..10300 is for client detected reasons.
  8351. //
  8352.  
  8353. //
  8354. // MessageId: NS_E_DRM_LICENSE_EXPIRED
  8355. //
  8356. // MessageText:
  8357. //
  8358. //  The license for this file has expired and is no longer valid. Contact your content provider for further assistance.%0
  8359. //
  8360. #define NS_E_DRM_LICENSE_EXPIRED         _HRESULT_TYPEDEF_(0xC00D27D8L)
  8361.  
  8362. //
  8363. // MessageId: NS_E_DRM_LICENSE_NOTENABLED
  8364. //
  8365. // MessageText:
  8366. //
  8367. //  The license for this file is not valid yet, but will be at a future date.%0
  8368. //
  8369. #define NS_E_DRM_LICENSE_NOTENABLED      _HRESULT_TYPEDEF_(0xC00D27D9L)
  8370.  
  8371. //
  8372. // MessageId: NS_E_DRM_LICENSE_APPSECLOW
  8373. //
  8374. // MessageText:
  8375. //
  8376. //  The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player.%0
  8377. //
  8378. #define NS_E_DRM_LICENSE_APPSECLOW       _HRESULT_TYPEDEF_(0xC00D27DAL)
  8379.  
  8380. //
  8381. // MessageId: NS_E_DRM_STORE_NEEDINDI
  8382. //
  8383. // MessageText:
  8384. //
  8385. //  The license cannot be stored as it requires security upgrade of Digital Rights Management component.%0.
  8386. //
  8387. #define NS_E_DRM_STORE_NEEDINDI          _HRESULT_TYPEDEF_(0xC00D27DBL)
  8388.  
  8389. //
  8390. // MessageId: NS_E_DRM_STORE_NOTALLOWED
  8391. //
  8392. // MessageText:
  8393. //
  8394. //  Your machine does not meet the requirements for storing the license.%0.
  8395. //
  8396. #define NS_E_DRM_STORE_NOTALLOWED        _HRESULT_TYPEDEF_(0xC00D27DCL)
  8397.  
  8398. //
  8399. // MessageId: NS_E_DRM_LICENSE_APP_NOTALLOWED
  8400. //
  8401. // MessageText:
  8402. //
  8403. //  The license for this file requires an upgraded version of your player or a different player.%0.
  8404. //
  8405. #define NS_E_DRM_LICENSE_APP_NOTALLOWED  _HRESULT_TYPEDEF_(0xC00D27DDL)
  8406.  
  8407. //
  8408. // MessageId: NS_S_DRM_NEEDS_INDIVIDUALIZATION
  8409. //
  8410. // MessageText:
  8411. //
  8412. //  A security upgrade is required to perform the operation on this media file.%0
  8413. //
  8414. #define NS_S_DRM_NEEDS_INDIVIDUALIZATION _HRESULT_TYPEDEF_(0x000D27DEL)
  8415.  
  8416. //
  8417. // MessageId: NS_E_DRM_LICENSE_CERT_EXPIRED
  8418. //
  8419. // MessageText:
  8420. //
  8421. //  The license server's certificate expired. Make sure your system clock is set correctly. Contact your content provider for further assistance. %0.
  8422. //
  8423. #define NS_E_DRM_LICENSE_CERT_EXPIRED    _HRESULT_TYPEDEF_(0xC00D27DFL)
  8424.  
  8425. //
  8426. // MessageId: NS_E_DRM_LICENSE_SECLOW
  8427. //
  8428. // MessageText:
  8429. //
  8430. //  The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player.%0
  8431. //
  8432. #define NS_E_DRM_LICENSE_SECLOW          _HRESULT_TYPEDEF_(0xC00D27E0L)
  8433.  
  8434. //
  8435. // MessageId: NS_E_DRM_LICENSE_CONTENT_REVOKED
  8436. //
  8437. // MessageText:
  8438. //
  8439. //  The content owner for the license you just acquired is no longer supporting their content. Contact the content owner for a newer version of the content.%0
  8440. //
  8441. #define NS_E_DRM_LICENSE_CONTENT_REVOKED _HRESULT_TYPEDEF_(0xC00D27E1L)
  8442.  
  8443. //
  8444. // MessageId: NS_E_DRM_LICENSE_NOSAP
  8445. //
  8446. // MessageText:
  8447. //
  8448. //  The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance.%0
  8449. //
  8450. #define NS_E_DRM_LICENSE_NOSAP           _HRESULT_TYPEDEF_(0xC00D280AL)
  8451.  
  8452. //
  8453. // MessageId: NS_E_DRM_LICENSE_NOSVP
  8454. //
  8455. // MessageText:
  8456. //
  8457. //  The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance.%0
  8458. //
  8459. #define NS_E_DRM_LICENSE_NOSVP           _HRESULT_TYPEDEF_(0xC00D280BL)
  8460.  
  8461. //
  8462. // MessageId: NS_E_DRM_LICENSE_NOWDM
  8463. //
  8464. // MessageText:
  8465. //
  8466. //  The license for this file requires Windows Driver Model (WDM) audio drivers. Contact your sound card manufacturer for further assistance.%0
  8467. //
  8468. #define NS_E_DRM_LICENSE_NOWDM           _HRESULT_TYPEDEF_(0xC00D280CL)
  8469.  
  8470. //
  8471. // MessageId: NS_E_DRM_LICENSE_NOTRUSTEDCODEC
  8472. //
  8473. // MessageText:
  8474. //
  8475. //  The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player.%0
  8476. //
  8477. #define NS_E_DRM_LICENSE_NOTRUSTEDCODEC  _HRESULT_TYPEDEF_(0xC00D280DL)
  8478.  
  8479.  
  8480. //
  8481. // End of License Reasons Section
  8482. //
  8483.  
  8484. //
  8485. // MessageId: NS_E_DRM_NEEDS_UPGRADE_TEMPFILE
  8486. //
  8487. // MessageText:
  8488. //
  8489. //  An updated version of your media player is required to play the selected content.%0
  8490. //
  8491. #define NS_E_DRM_NEEDS_UPGRADE_TEMPFILE  _HRESULT_TYPEDEF_(0xC00D283DL)
  8492.  
  8493. //
  8494. // MessageId: NS_E_DRM_NEED_UPGRADE_PD
  8495. //
  8496. // MessageText:
  8497. //
  8498. //  A new version of the Digital Rights Management component is required. Contact product support for this application to get the latest version.%0
  8499. //
  8500. #define NS_E_DRM_NEED_UPGRADE_PD         _HRESULT_TYPEDEF_(0xC00D283EL)
  8501.  
  8502. //
  8503. // MessageId: NS_E_DRM_SIGNATURE_FAILURE
  8504. //
  8505. // MessageText:
  8506. //
  8507. //  Failed to either create or verify the content header.%0
  8508. //
  8509. #define NS_E_DRM_SIGNATURE_FAILURE       _HRESULT_TYPEDEF_(0xC00D283FL)
  8510.  
  8511. //
  8512. // MessageId: NS_E_DRM_LICENSE_SERVER_INFO_MISSING
  8513. //
  8514. // MessageText:
  8515. //
  8516. //  Could not read the necessary information from the system registry.%0
  8517. //
  8518. #define NS_E_DRM_LICENSE_SERVER_INFO_MISSING _HRESULT_TYPEDEF_(0xC00D2840L)
  8519.  
  8520. //
  8521. // MessageId: NS_E_DRM_BUSY
  8522. //
  8523. // MessageText:
  8524. //
  8525. //  The DRM subsystem is currently locked by another application or user.  Try again later.%0
  8526. //
  8527. #define NS_E_DRM_BUSY                    _HRESULT_TYPEDEF_(0xC00D2841L)
  8528.  
  8529. //
  8530. // MessageId: NS_E_DRM_PD_TOO_MANY_DEVICES
  8531. //
  8532. // MessageText:
  8533. //
  8534. //  There are too many target devices registered on the portable media.%0
  8535. //
  8536. #define NS_E_DRM_PD_TOO_MANY_DEVICES     _HRESULT_TYPEDEF_(0xC00D2842L)
  8537.  
  8538. //
  8539. // MessageId: NS_E_DRM_INDIV_FRAUD
  8540. //
  8541. // MessageText:
  8542. //
  8543. //  The security upgrade cannot be completed because the allowed number of daily upgrades has been exceeded. Try again tomorrow.%0
  8544. //
  8545. #define NS_E_DRM_INDIV_FRAUD             _HRESULT_TYPEDEF_(0xC00D2843L)
  8546.  
  8547. //
  8548. // MessageId: NS_E_DRM_INDIV_NO_CABS
  8549. //
  8550. // MessageText:
  8551. //
  8552. //  The security upgrade cannot be completed because the server is unable to perform the operation. Try again later.%0
  8553. //
  8554. #define NS_E_DRM_INDIV_NO_CABS           _HRESULT_TYPEDEF_(0xC00D2844L)
  8555.  
  8556. //
  8557. // MessageId: NS_E_DRM_INDIV_SERVICE_UNAVAILABLE
  8558. //
  8559. // MessageText:
  8560. //
  8561. //  The security upgrade cannot be performed because the server is not available. Try again later.%0
  8562. //
  8563. #define NS_E_DRM_INDIV_SERVICE_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D2845L)
  8564.  
  8565. //
  8566. // MessageId: NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE
  8567. //
  8568. // MessageText:
  8569. //
  8570. //  Windows Media Player cannot restore your licenses because the server is not available. Try again later.%0
  8571. //
  8572. #define NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE _HRESULT_TYPEDEF_(0xC00D2846L)
  8573.  
  8574.  
  8575.  
  8576. /////////////////////////////////////////////////////////////////////////
  8577. //
  8578. // Windows Media Setup Specific Errors
  8579. //
  8580. // IdRange = 11000..11999
  8581. /////////////////////////////////////////////////////////////////////////
  8582. //
  8583. // MessageId: NS_S_REBOOT_RECOMMENDED
  8584. //
  8585. // MessageText:
  8586. //
  8587. //  The requested operation is successful.  Some cleanup will not be complete until the system is rebooted.%0
  8588. //
  8589. #define NS_S_REBOOT_RECOMMENDED          _HRESULT_TYPEDEF_(0x000D2AF8L)
  8590.  
  8591. //
  8592. // MessageId: NS_S_REBOOT_REQUIRED
  8593. //
  8594. // MessageText:
  8595. //
  8596. //  The requested operation is successful.  The system will not function correctly until the system is rebooted.%0
  8597. //
  8598. #define NS_S_REBOOT_REQUIRED             _HRESULT_TYPEDEF_(0x000D2AF9L)
  8599.  
  8600. //
  8601. // MessageId: NS_E_REBOOT_RECOMMENDED
  8602. //
  8603. // MessageText:
  8604. //
  8605. //  The requested operation failed.  Some cleanup will not be complete until the system is rebooted.%0
  8606. //
  8607. #define NS_E_REBOOT_RECOMMENDED          _HRESULT_TYPEDEF_(0xC00D2AFAL)
  8608.  
  8609. //
  8610. // MessageId: NS_E_REBOOT_REQUIRED
  8611. //
  8612. // MessageText:
  8613. //
  8614. //  The requested operation failed.  The system will not function correctly until the system is rebooted.%0
  8615. //
  8616. #define NS_E_REBOOT_REQUIRED             _HRESULT_TYPEDEF_(0xC00D2AFBL)
  8617.  
  8618.  
  8619. /////////////////////////////////////////////////////////////////////////
  8620. //
  8621. // Windows Media Networking Errors
  8622. //
  8623. // IdRange = 12000..12999
  8624. /////////////////////////////////////////////////////////////////////////
  8625. //
  8626. // MessageId: NS_E_UNKNOWN_PROTOCOL
  8627. //
  8628. // MessageText:
  8629. //
  8630. //  The specified protocol is not supported.%0
  8631. //
  8632. #define NS_E_UNKNOWN_PROTOCOL            _HRESULT_TYPEDEF_(0xC00D2EE0L)
  8633.  
  8634. //
  8635. // MessageId: NS_E_REDIRECT_TO_PROXY
  8636. //
  8637. // MessageText:
  8638. //
  8639. //  The client is redirected to a proxy server.%0
  8640. //
  8641. #define NS_E_REDIRECT_TO_PROXY           _HRESULT_TYPEDEF_(0xC00D2EE1L)
  8642.  
  8643. //
  8644. // MessageId: NS_E_INTERNAL_SERVER_ERROR
  8645. //
  8646. // MessageText:
  8647. //
  8648. //  The server encountered an unexpected condition which prevented it from fulfilling the request.%0
  8649. //
  8650. #define NS_E_INTERNAL_SERVER_ERROR       _HRESULT_TYPEDEF_(0xC00D2EE2L)
  8651.  
  8652. //
  8653. // MessageId: NS_E_BAD_REQUEST
  8654. //
  8655. // MessageText:
  8656. //
  8657. //  The request could not be understood by the server.%0
  8658. //
  8659. #define NS_E_BAD_REQUEST                 _HRESULT_TYPEDEF_(0xC00D2EE3L)
  8660.  
  8661. //
  8662. // MessageId: NS_E_ERROR_FROM_PROXY
  8663. //
  8664. // MessageText:
  8665. //
  8666. //  The proxy experienced an error while attempting to contact the media server.%0
  8667. //
  8668. #define NS_E_ERROR_FROM_PROXY            _HRESULT_TYPEDEF_(0xC00D2EE4L)
  8669.  
  8670. //
  8671. // MessageId: NS_E_PROXY_TIMEOUT
  8672. //
  8673. // MessageText:
  8674. //
  8675. //  The proxy did not receive a timely response while attempting to contact the media server.%0
  8676. //
  8677. #define NS_E_PROXY_TIMEOUT               _HRESULT_TYPEDEF_(0xC00D2EE5L)
  8678.  
  8679. //
  8680. // MessageId: NS_E_SERVER_UNAVAILABLE
  8681. //
  8682. // MessageText:
  8683. //
  8684. //  The server is currently unable to handle the request due to a temporary overloading or maintenance of the server.%0
  8685. //
  8686. #define NS_E_SERVER_UNAVAILABLE          _HRESULT_TYPEDEF_(0xC00D2EE6L)
  8687.  
  8688. //
  8689. // MessageId: NS_E_REFUSED_BY_SERVER
  8690. //
  8691. // MessageText:
  8692. //
  8693. //  The server is refusing to fulfill the requested operation.%0
  8694. //
  8695. #define NS_E_REFUSED_BY_SERVER           _HRESULT_TYPEDEF_(0xC00D2EE7L)
  8696.  
  8697. //
  8698. // MessageId: NS_E_INCOMPATIBLE_SERVER
  8699. //
  8700. // MessageText:
  8701. //
  8702. //  The server is not a compatible streaming media server.%0
  8703. //
  8704. #define NS_E_INCOMPATIBLE_SERVER         _HRESULT_TYPEDEF_(0xC00D2EE8L)
  8705.  
  8706. //
  8707. // MessageId: NS_E_MULTICAST_DISABLED
  8708. //
  8709. // MessageText:
  8710. //
  8711. //  The content cannot be streamed because the Multicast protocol has been disabled.%0
  8712. //
  8713. #define NS_E_MULTICAST_DISABLED          _HRESULT_TYPEDEF_(0xC00D2EE9L)
  8714.  
  8715. //
  8716. // MessageId: NS_E_INVALID_REDIRECT
  8717. //
  8718. // MessageText:
  8719. //
  8720. //  The server redirected the player to an invalid location.%0
  8721. //
  8722. #define NS_E_INVALID_REDIRECT            _HRESULT_TYPEDEF_(0xC00D2EEAL)
  8723.  
  8724. //
  8725. // MessageId: NS_E_ALL_PROTOCOLS_DISABLED
  8726. //
  8727. // MessageText:
  8728. //
  8729. //  The content cannot be streamed because all protocols have been disabled.%0
  8730. //
  8731. #define NS_E_ALL_PROTOCOLS_DISABLED      _HRESULT_TYPEDEF_(0xC00D2EEBL)
  8732.  
  8733. //
  8734. // MessageId: NS_E_MSBD_NO_LONGER_SUPPORTED
  8735. //
  8736. // MessageText:
  8737. //
  8738. //  The MSBD protocol is no longer supported. Please use HTTP to connect to the Windows Media stream.%0
  8739. //
  8740. #define NS_E_MSBD_NO_LONGER_SUPPORTED    _HRESULT_TYPEDEF_(0xC00D2EECL)
  8741.  
  8742. //
  8743. // MessageId: NS_E_PROXY_NOT_FOUND
  8744. //
  8745. // MessageText:
  8746. //
  8747. //  The proxy server could not be located. Please check your proxy server configuration.%0
  8748. //
  8749. #define NS_E_PROXY_NOT_FOUND             _HRESULT_TYPEDEF_(0xC00D2EEDL)
  8750.  
  8751. //
  8752. // MessageId: NS_E_CANNOT_CONNECT_TO_PROXY
  8753. //
  8754. // MessageText:
  8755. //
  8756. //  Unable to establish a connection to the proxy server. Please check your proxy server configuration.%0
  8757. //
  8758. #define NS_E_CANNOT_CONNECT_TO_PROXY     _HRESULT_TYPEDEF_(0xC00D2EEEL)
  8759.  
  8760. //
  8761. // MessageId: NS_E_SERVER_DNS_TIMEOUT
  8762. //
  8763. // MessageText:
  8764. //
  8765. //  Unable to locate the media server. The operation timed out.%0
  8766. //
  8767. #define NS_E_SERVER_DNS_TIMEOUT          _HRESULT_TYPEDEF_(0xC00D2EEFL)
  8768.  
  8769. //
  8770. // MessageId: NS_E_PROXY_DNS_TIMEOUT
  8771. //
  8772. // MessageText:
  8773. //
  8774. //  Unable to locate the proxy server. The operation timed out.%0
  8775. //
  8776. #define NS_E_PROXY_DNS_TIMEOUT           _HRESULT_TYPEDEF_(0xC00D2EF0L)
  8777.  
  8778. //
  8779. // MessageId: NS_E_CLOSED_ON_SUSPEND
  8780. //
  8781. // MessageText:
  8782. //
  8783. //  Media closed because Windows was shut down.%0
  8784. //
  8785. #define NS_E_CLOSED_ON_SUSPEND           _HRESULT_TYPEDEF_(0xC00D2EF1L)
  8786.  
  8787. //
  8788. // MessageId: NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER
  8789. //
  8790. // MessageText:
  8791. //
  8792. //  Unable to read the contents of a playlist file from a media server.%0
  8793. //
  8794. #define NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER _HRESULT_TYPEDEF_(0xC00D2EF2L)
  8795.  
  8796. //
  8797. // MessageId: NS_E_SESSION_NOT_FOUND
  8798. //
  8799. // MessageText:
  8800. //
  8801. //  Session not found.%0
  8802. //
  8803. #define NS_E_SESSION_NOT_FOUND           _HRESULT_TYPEDEF_(0xC00D2EF3L)
  8804.  
  8805. //
  8806. // MessageId: NS_E_REQUIRE_STREAMING_CLIENT
  8807. //
  8808. // MessageText:
  8809. //
  8810. //  Content requires a streaming media client.%0
  8811. //
  8812. #define NS_E_REQUIRE_STREAMING_CLIENT    _HRESULT_TYPEDEF_(0xC00D2EF4L)
  8813.  
  8814. //
  8815. // MessageId: NS_E_PLAYLIST_ENTRY_HAS_CHANGED
  8816. //
  8817. // MessageText:
  8818. //
  8819. //  A command applies to a previous playlist entry.%0
  8820. //
  8821. #define NS_E_PLAYLIST_ENTRY_HAS_CHANGED  _HRESULT_TYPEDEF_(0xC00D2EF5L)
  8822.  
  8823. //
  8824. // MessageId: NS_E_PROXY_ACCESSDENIED
  8825. //
  8826. // MessageText:
  8827. //
  8828. //  The proxy server is denying access.  The username and/or password might be incorrect.%0
  8829. //
  8830. #define NS_E_PROXY_ACCESSDENIED          _HRESULT_TYPEDEF_(0xC00D2EF6L)
  8831.  
  8832. //
  8833. // MessageId: NS_E_PROXY_SOURCE_ACCESSDENIED
  8834. //
  8835. // MessageText:
  8836. //
  8837. //  The proxy could not provide valid authentication credentials to the media server.%0
  8838. //
  8839. #define NS_E_PROXY_SOURCE_ACCESSDENIED   _HRESULT_TYPEDEF_(0xC00D2EF7L)
  8840.  
  8841. //
  8842. // MessageId: NS_E_NETWORK_SINK_WRITE
  8843. //
  8844. // MessageText:
  8845. //
  8846. //  The network sink failed to write data to the network.%0
  8847. //
  8848. #define NS_E_NETWORK_SINK_WRITE          _HRESULT_TYPEDEF_(0xC00D2EF8L)
  8849.  
  8850. //
  8851. // MessageId: NS_E_FIREWALL
  8852. //
  8853. // MessageText:
  8854. //
  8855. //  Packets are not being received from the server. The packets might be blocked by a filtering device, such as a network firewall.%0
  8856. //
  8857. #define NS_E_FIREWALL                    _HRESULT_TYPEDEF_(0xC00D2EF9L)
  8858.  
  8859. //
  8860. // MessageId: NS_E_MMS_NOT_SUPPORTED
  8861. //
  8862. // MessageText:
  8863. //
  8864. //  The MMS protocol is not supported. Please use HTTP or RTSP to connect to the Windows Media stream.%0
  8865. //
  8866. #define NS_E_MMS_NOT_SUPPORTED           _HRESULT_TYPEDEF_(0xC00D2EFAL)
  8867.  
  8868. //
  8869. // MessageId: NS_E_SERVER_ACCESSDENIED
  8870. //
  8871. // MessageText:
  8872. //
  8873. //  The Windows Media server is denying access.  The username and/or password might be incorrect.%0
  8874. //
  8875. #define NS_E_SERVER_ACCESSDENIED         _HRESULT_TYPEDEF_(0xC00D2EFBL)
  8876.  
  8877. //
  8878. // MessageId: NS_E_RESOURCE_GONE
  8879. //
  8880. // MessageText:
  8881. //
  8882. //  The Publishing Point or file on the Windows Media Server is no longer available.%0
  8883. //
  8884. #define NS_E_RESOURCE_GONE               _HRESULT_TYPEDEF_(0xC00D2EFCL)
  8885.  
  8886. //
  8887. // MessageId: NS_E_NO_EXISTING_PACKETIZER
  8888. //
  8889. // MessageText:
  8890. //
  8891. //  There is no existing packetizer plugin for a stream.%0
  8892. //
  8893. #define NS_E_NO_EXISTING_PACKETIZER      _HRESULT_TYPEDEF_(0xC00D2EFDL)
  8894.  
  8895. //
  8896. // MessageId: NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE
  8897. //
  8898. // MessageText:
  8899. //
  8900. //  The response from the media server could not be understood. This might be caused by an incompatible proxy server or media server.%0
  8901. //
  8902. #define NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE _HRESULT_TYPEDEF_(0xC00D2EFEL)
  8903.  
  8904. //
  8905. // MessageId: NS_I_RECONNECTED
  8906. //
  8907. // MessageText:
  8908. //
  8909. //  The client is reconnected.%0
  8910. //
  8911. #define NS_I_RECONNECTED                 _HRESULT_TYPEDEF_(0x400D2EFFL)
  8912.  
  8913. //
  8914. // MessageId: NS_E_RESET_SOCKET_CONNECTION
  8915. //
  8916. // MessageText:
  8917. //
  8918. //  The Windows Media Server reset the network connection.%0
  8919. //
  8920. #define NS_E_RESET_SOCKET_CONNECTION     _HRESULT_TYPEDEF_(0xC00D2F00L)
  8921.  
  8922. //
  8923. // MessageId: NS_I_NOLOG_STOP
  8924. //
  8925. // MessageText:
  8926. //
  8927. //  Forcing a switch to a pending header on start.%0
  8928. //
  8929. #define NS_I_NOLOG_STOP                  _HRESULT_TYPEDEF_(0x400D2F01L)
  8930.  
  8931. //
  8932. // MessageId: NS_E_TOO_MANY_HOPS
  8933. //
  8934. // MessageText:
  8935. //
  8936. //  The request could not reach the media server (too many hops).%0
  8937. //
  8938. #define NS_E_TOO_MANY_HOPS               _HRESULT_TYPEDEF_(0xC00D2F02L)
  8939.  
  8940. //
  8941. // MessageId: NS_I_EXISTING_PACKETIZER
  8942. //
  8943. // MessageText:
  8944. //
  8945. //  There is already an existing packetizer plugin for the stream.%0
  8946. //
  8947. #define NS_I_EXISTING_PACKETIZER         _HRESULT_TYPEDEF_(0x400D2F03L)
  8948.  
  8949. //
  8950. // MessageId: NS_I_MANUAL_PROXY
  8951. //
  8952. // MessageText:
  8953. //
  8954. //  The proxy setting is manual.%0
  8955. //
  8956. #define NS_I_MANUAL_PROXY                _HRESULT_TYPEDEF_(0x400D2F04L)
  8957.  
  8958. //
  8959. // MessageId: NS_E_TOO_MUCH_DATA_FROM_SERVER
  8960. //
  8961. // MessageText:
  8962. //
  8963. //  The server is sending too much data. The connection has been terminated.%0
  8964. //
  8965. #define NS_E_TOO_MUCH_DATA_FROM_SERVER   _HRESULT_TYPEDEF_(0xC00D2F05L)
  8966.  
  8967. //
  8968. // MessageId: NS_E_CONNECT_TIMEOUT
  8969. //
  8970. // MessageText:
  8971. //
  8972. //  It was not possible to establish a connection to the media server in a timely manner. The media server may be down for maintenance, or it may be necessary to use a proxy server to access this media server.%0
  8973. //
  8974. #define NS_E_CONNECT_TIMEOUT             _HRESULT_TYPEDEF_(0xC00D2F06L)
  8975.  
  8976. //
  8977. // MessageId: NS_E_PROXY_CONNECT_TIMEOUT
  8978. //
  8979. // MessageText:
  8980. //
  8981. //  It was not possible to establish a connection to the proxy server in a timely manner. Please check your proxy server configuration.%0
  8982. //
  8983. #define NS_E_PROXY_CONNECT_TIMEOUT       _HRESULT_TYPEDEF_(0xC00D2F07L)
  8984.  
  8985. //
  8986. // MessageId: NS_E_SESSION_INVALID
  8987. //
  8988. // MessageText:
  8989. //
  8990. //  Session not found.%0
  8991. //
  8992. #define NS_E_SESSION_INVALID             _HRESULT_TYPEDEF_(0xC00D2F08L)
  8993.  
  8994. //
  8995. // MessageId: NS_S_EOSRECEDING
  8996. //
  8997. // MessageText:
  8998. //
  8999. //  EOS hit during rewinding.%0
  9000. //
  9001. #define NS_S_EOSRECEDING                 _HRESULT_TYPEDEF_(0x000D2F09L)
  9002.  
  9003. //
  9004. // MessageId: NS_E_PACKETSINK_UNKNOWN_FEC_STREAM
  9005. //
  9006. // MessageText:
  9007. //
  9008. //  Unknown packet sink stream.%0
  9009. //
  9010. #define NS_E_PACKETSINK_UNKNOWN_FEC_STREAM _HRESULT_TYPEDEF_(0xC00D2F0AL)
  9011.  
  9012. //
  9013. // MessageId: NS_E_PUSH_CANNOTCONNECT
  9014. //
  9015. // MessageText:
  9016. //
  9017. //  Unable to establish a connection to the server. Ensure Windows Media Services is started and the HTTP Server control protocol is properly enabled.%0
  9018. //
  9019. #define NS_E_PUSH_CANNOTCONNECT          _HRESULT_TYPEDEF_(0xC00D2F0BL)
  9020.  
  9021. //
  9022. // MessageId: NS_E_INCOMPATIBLE_PUSH_SERVER
  9023. //
  9024. // MessageText:
  9025. //
  9026. //  The Server service that received the HTTP push request is not a compatible version of Windows Media Services (WMS).  This error may indicate the push request was received by IIS instead of WMS.  Ensure WMS is started and has the HTTP Server control protocol properly enabled and try again.%0
  9027. //
  9028. #define NS_E_INCOMPATIBLE_PUSH_SERVER    _HRESULT_TYPEDEF_(0xC00D2F0CL)
  9029.  
  9030.  
  9031. /////////////////////////////////////////////////////////////////////////
  9032. //
  9033. // Windows Media Client Media Services
  9034. //
  9035. // IdRange = 13000..13999 (0x32C8-0x36AF)
  9036. /////////////////////////////////////////////////////////////////////////
  9037. //
  9038. // MessageId: NS_E_END_OF_PLAYLIST
  9039. //
  9040. // MessageText:
  9041. //
  9042. //  The playlist has reached its end.%0
  9043. //
  9044. #define NS_E_END_OF_PLAYLIST             _HRESULT_TYPEDEF_(0xC00D32C8L)
  9045.  
  9046. //
  9047. // MessageId: NS_E_USE_FILE_SOURCE
  9048. //
  9049. // MessageText:
  9050. //
  9051. //  Use file source.%0
  9052. //
  9053. #define NS_E_USE_FILE_SOURCE             _HRESULT_TYPEDEF_(0xC00D32C9L)
  9054.  
  9055. //
  9056. // MessageId: NS_E_PROPERTY_NOT_FOUND
  9057. //
  9058. // MessageText:
  9059. //
  9060. //  The property was not found.%0
  9061. //
  9062. #define NS_E_PROPERTY_NOT_FOUND          _HRESULT_TYPEDEF_(0xC00D32CAL)
  9063.  
  9064. //
  9065. // MessageId: NS_E_PROPERTY_READ_ONLY
  9066. //
  9067. // MessageText:
  9068. //
  9069. //  The property is read only.%0
  9070. //
  9071. #define NS_E_PROPERTY_READ_ONLY          _HRESULT_TYPEDEF_(0xC00D32CCL)
  9072.  
  9073. //
  9074. // MessageId: NS_E_TABLE_KEY_NOT_FOUND
  9075. //
  9076. // MessageText:
  9077. //
  9078. //  The table key was not found.%0
  9079. //
  9080. #define NS_E_TABLE_KEY_NOT_FOUND         _HRESULT_TYPEDEF_(0xC00D32CDL)
  9081.  
  9082. //
  9083. // MessageId: NS_E_INVALID_QUERY_OPERATOR
  9084. //
  9085. // MessageText:
  9086. //
  9087. //  Invalid query operator.%0
  9088. //
  9089. #define NS_E_INVALID_QUERY_OPERATOR      _HRESULT_TYPEDEF_(0xC00D32CFL)
  9090.  
  9091. //
  9092. // MessageId: NS_E_INVALID_QUERY_PROPERTY
  9093. //
  9094. // MessageText:
  9095. //
  9096. //  Invalid query property.%0
  9097. //
  9098. #define NS_E_INVALID_QUERY_PROPERTY      _HRESULT_TYPEDEF_(0xC00D32D0L)
  9099.  
  9100. //
  9101. // MessageId: NS_E_PROPERTY_NOT_SUPPORTED
  9102. //
  9103. // MessageText:
  9104. //
  9105. //  The property is not supported.%0
  9106. //
  9107. #define NS_E_PROPERTY_NOT_SUPPORTED      _HRESULT_TYPEDEF_(0xC00D32D2L)
  9108.  
  9109. //
  9110. // MessageId: NS_E_SCHEMA_CLASSIFY_FAILURE
  9111. //
  9112. // MessageText:
  9113. //
  9114. //  Schema classification failure.%0
  9115. //
  9116. #define NS_E_SCHEMA_CLASSIFY_FAILURE     _HRESULT_TYPEDEF_(0xC00D32D4L)
  9117.  
  9118. //
  9119. // MessageId: NS_E_METADATA_FORMAT_NOT_SUPPORTED
  9120. //
  9121. // MessageText:
  9122. //
  9123. //  The metadata format is not supported.%0
  9124. //
  9125. #define NS_E_METADATA_FORMAT_NOT_SUPPORTED _HRESULT_TYPEDEF_(0xC00D32D5L)
  9126.  
  9127. //
  9128. // MessageId: NS_E_METADATA_NO_EDITING_CAPABILITY
  9129. //
  9130. // MessageText:
  9131. //
  9132. //  Cannot edit the metadata.%0
  9133. //
  9134. #define NS_E_METADATA_NO_EDITING_CAPABILITY _HRESULT_TYPEDEF_(0xC00D32D6L)
  9135.  
  9136. //
  9137. // MessageId: NS_E_METADATA_CANNOT_SET_LOCALE
  9138. //
  9139. // MessageText:
  9140. //
  9141. //  Cannot set the locale id.%0
  9142. //
  9143. #define NS_E_METADATA_CANNOT_SET_LOCALE  _HRESULT_TYPEDEF_(0xC00D32D7L)
  9144.  
  9145. //
  9146. // MessageId: NS_E_METADATA_LANGUAGE_NOT_SUPORTED
  9147. //
  9148. // MessageText:
  9149. //
  9150. //  The language is not supported in the format.%0
  9151. //
  9152. #define NS_E_METADATA_LANGUAGE_NOT_SUPORTED _HRESULT_TYPEDEF_(0xC00D32D8L)
  9153.  
  9154. //
  9155. // MessageId: NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE
  9156. //
  9157. // MessageText:
  9158. //
  9159. //  There is no RFC1766 name translation for the supplied locale id.%0
  9160. //
  9161. #define NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE _HRESULT_TYPEDEF_(0xC00D32D9L)
  9162.  
  9163. //
  9164. // MessageId: NS_E_METADATA_NOT_AVAILABLE
  9165. //
  9166. // MessageText:
  9167. //
  9168. //  The metadata (or metadata item) is not available.%0
  9169. //
  9170. #define NS_E_METADATA_NOT_AVAILABLE      _HRESULT_TYPEDEF_(0xC00D32DAL)
  9171.  
  9172. //
  9173. // MessageId: NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE
  9174. //
  9175. // MessageText:
  9176. //
  9177. //  The cached metadata (or metadata item) is not available.%0
  9178. //
  9179. #define NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE _HRESULT_TYPEDEF_(0xC00D32DBL)
  9180.  
  9181. //
  9182. // MessageId: NS_E_METADATA_INVALID_DOCUMENT_TYPE
  9183. //
  9184. // MessageText:
  9185. //
  9186. //  The metadata document is invalid.%0
  9187. //
  9188. #define NS_E_METADATA_INVALID_DOCUMENT_TYPE _HRESULT_TYPEDEF_(0xC00D32DCL)
  9189.  
  9190. //
  9191. // MessageId: NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE
  9192. //
  9193. // MessageText:
  9194. //
  9195. //  The metadata content identifier is not available.%0
  9196. //
  9197. #define NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE _HRESULT_TYPEDEF_(0xC00D32DDL)
  9198.  
  9199. //
  9200. // MessageId: NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE
  9201. //
  9202. // MessageText:
  9203. //
  9204. //  Cannot retrieve metadata from the offline metadata cache.%0
  9205. //
  9206. #define NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE _HRESULT_TYPEDEF_(0xC00D32DEL)
  9207.  
  9208.  
  9209. #endif // _NSERROR_H
  9210.  
  9211.